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"; /** * * @deprecated Use waitUntilAnyInstanceInService instead. waitForAnyInstanceInService does not throw error in non-success cases. */ export declare const waitForAnyInstanceInService: (params: WaiterConfiguration, input: DescribeInstanceHealthCommandInput) => Promise>; /** * * @param params - Waiter configuration options. * @param input - The input to DescribeInstanceHealthCommand for polling. */ export declare const waitUntilAnyInstanceInService: (params: WaiterConfiguration, input: DescribeInstanceHealthCommandInput) => Promise>;