import { type WaiterConfiguration, type WaiterResult } from "@smithy/core/client";
import { type DescribeProjectVersionsCommandInput, type DescribeProjectVersionsCommandOutput } from "../commands/DescribeProjectVersionsCommand";
import type { RekognitionServiceException } from "../models/RekognitionServiceException";
import type { RekognitionClient } from "../RekognitionClient";
/**
 * Wait until the ProjectVersion is running.
 *  @deprecated Use waitUntilProjectVersionRunning instead. waitForProjectVersionRunning does not throw error in non-success cases.
 */
export declare const waitForProjectVersionRunning: (params: WaiterConfiguration<RekognitionClient>, input: DescribeProjectVersionsCommandInput) => Promise<WaiterResult<DescribeProjectVersionsCommandOutput | RekognitionServiceException>>;
/**
 * Wait until the ProjectVersion is running.
 *  @param params - Waiter configuration options.
 *  @param input - The input to DescribeProjectVersionsCommand for polling.
 */
export declare const waitUntilProjectVersionRunning: (params: WaiterConfiguration<RekognitionClient>, input: DescribeProjectVersionsCommandInput) => Promise<WaiterResult<DescribeProjectVersionsCommandOutput>>;
