import { WaiterConfiguration, WaiterResult } from "@smithy/core/client";
import {
  DescribeFargateProfileCommandInput,
  DescribeFargateProfileCommandOutput,
} from "../commands/DescribeFargateProfileCommand";
import { EKSClient } from "../EKSClient";
import { EKSServiceException } from "../models/EKSServiceException";
export declare const waitForFargateProfileActive: (
  params: WaiterConfiguration<EKSClient>,
  input: DescribeFargateProfileCommandInput
) => Promise<
  WaiterResult<DescribeFargateProfileCommandOutput | EKSServiceException>
>;
export declare const waitUntilFargateProfileActive: (
  params: WaiterConfiguration<EKSClient>,
  input: DescribeFargateProfileCommandInput
) => Promise<WaiterResult<DescribeFargateProfileCommandOutput>>;
