import { type WaiterConfiguration, type WaiterResult } from "@smithy/core/client"; import { type DescribeBatchPredictionsCommandInput, type DescribeBatchPredictionsCommandOutput } from "../commands/DescribeBatchPredictionsCommand"; import type { MachineLearningClient } from "../MachineLearningClient"; import type { MachineLearningServiceException } from "../models/MachineLearningServiceException"; /** * * @deprecated Use waitUntilBatchPredictionAvailable instead. waitForBatchPredictionAvailable does not throw error in non-success cases. */ export declare const waitForBatchPredictionAvailable: (params: WaiterConfiguration, input: DescribeBatchPredictionsCommandInput) => Promise>; /** * * @param params - Waiter configuration options. * @param input - The input to DescribeBatchPredictionsCommand for polling. */ export declare const waitUntilBatchPredictionAvailable: (params: WaiterConfiguration, input: DescribeBatchPredictionsCommandInput) => Promise>;