import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
import { DescribeClusterCommandInput } from "../commands/DescribeClusterCommand";
import { EKSClient } from "../EKSClient";
export declare const waitForClusterDeleted: (
  params: WaiterConfiguration<EKSClient>,
  input: DescribeClusterCommandInput
) => Promise<WaiterResult>;
export declare const waitUntilClusterDeleted: (
  params: WaiterConfiguration<EKSClient>,
  input: DescribeClusterCommandInput
) => Promise<WaiterResult>;
