import { type WaiterConfiguration, type WaiterResult } from "@smithy/util-waiter"; import { type DescribeTargetHealthCommandInput } from "../commands/DescribeTargetHealthCommand"; import type { ElasticLoadBalancingV2Client } from "../ElasticLoadBalancingV2Client"; /** * * @deprecated Use waitUntilTargetInService instead. waitForTargetInService does not throw error in non-success cases. */ export declare const waitForTargetInService: (params: WaiterConfiguration, input: DescribeTargetHealthCommandInput) => Promise; /** * * @param params - Waiter configuration options. * @param input - The input to DescribeTargetHealthCommand for polling. */ export declare const waitUntilTargetInService: (params: WaiterConfiguration, input: DescribeTargetHealthCommandInput) => Promise;