import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter"; import { DescribeClustersCommandInput, DescribeClustersCommandOutput, } from "../commands/DescribeClustersCommand"; import { ClusterNotFoundFault } from "../models/errors"; import { RedshiftServiceException } from "../models/RedshiftServiceException"; import { RedshiftClient } from "../RedshiftClient"; export declare const waitForClusterDeleted: ( params: WaiterConfiguration, input: DescribeClustersCommandInput ) => Promise< WaiterResult >; export declare const waitUntilClusterDeleted: ( params: WaiterConfiguration, input: DescribeClustersCommandInput ) => Promise>;