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 waitUntilImageCreated instead. waitForImageCreated does not throw error in non-success cases. */ export declare const waitForImageCreated: (params: WaiterConfiguration, input: DescribeImageCommandInput) => Promise>; /** * * @param params - Waiter configuration options. * @param input - The input to DescribeImageCommand for polling. */ export declare const waitUntilImageCreated: (params: WaiterConfiguration, input: DescribeImageCommandInput) => Promise>;