import { WaiterConfiguration, WaiterResult } from "@smithy/core/client";
import {
  DescribeClusterCommandInput,
  DescribeClusterCommandOutput,
} from "../commands/DescribeClusterCommand";
import { EKSClient } from "../EKSClient";
import { EKSServiceException } from "../models/EKSServiceException";
import { ResourceNotFoundException } from "../models/errors";
export declare const waitForClusterDeleted: (
  params: WaiterConfiguration<EKSClient>,
  input: DescribeClusterCommandInput
) => Promise<WaiterResult<DescribeClusterCommandOutput | EKSServiceException>>;
export declare const waitUntilClusterDeleted: (
  params: WaiterConfiguration<EKSClient>,
  input: DescribeClusterCommandInput
) => Promise<WaiterResult<ResourceNotFoundException>>;
