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