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