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