import { type WaiterConfiguration, type WaiterResult } from "@smithy/core/client"; import { type DescribeInstanceHealthCommandInput, type DescribeInstanceHealthCommandOutput } from "../commands/DescribeInstanceHealthCommand"; import type { ElasticLoadBalancingClient } from "../ElasticLoadBalancingClient"; import type { ElasticLoadBalancingServiceException } from "../models/ElasticLoadBalancingServiceException"; import type { InvalidEndPointException } from "../models/errors"; /** * * @deprecated Use waitUntilInstanceDeregistered instead. waitForInstanceDeregistered does not throw error in non-success cases. */ export declare const waitForInstanceDeregistered: (params: WaiterConfiguration, input: DescribeInstanceHealthCommandInput) => Promise>; /** * * @param params - Waiter configuration options. * @param input - The input to DescribeInstanceHealthCommand for polling. */ export declare const waitUntilInstanceDeregistered: (params: WaiterConfiguration, input: DescribeInstanceHealthCommandInput) => Promise>;