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