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