import { type WaiterConfiguration, type WaiterResult } from "@smithy/core/client"; import { type DescribeImageCommandInput, type DescribeImageCommandOutput } from "../commands/DescribeImageCommand"; import type { SageMakerServiceException } from "../models/SageMakerServiceException"; import type { SageMakerClient } from "../SageMakerClient"; /** * * @deprecated Use waitUntilImageUpdated instead. waitForImageUpdated does not throw error in non-success cases. */ export declare const waitForImageUpdated: (params: WaiterConfiguration, input: DescribeImageCommandInput) => Promise>; /** * * @param params - Waiter configuration options. * @param input - The input to DescribeImageCommand for polling. */ export declare const waitUntilImageUpdated: (params: WaiterConfiguration, input: DescribeImageCommandInput) => Promise>;