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