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