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