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