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