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