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