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