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