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