import { WaiterConfiguration, WaiterResult } from "@smithy/core/client"; import { DescribeDBClustersCommandInput, DescribeDBClustersCommandOutput, } from "../commands/DescribeDBClustersCommand"; import { DBClusterNotFoundFault } from "../models/errors"; import { RDSServiceException } from "../models/RDSServiceException"; import { RDSClient } from "../RDSClient"; export declare const waitForDBClusterDeleted: ( params: WaiterConfiguration, input: DescribeDBClustersCommandInput ) => Promise< WaiterResult >; export declare const waitUntilDBClusterDeleted: ( params: WaiterConfiguration, input: DescribeDBClustersCommandInput ) => Promise< WaiterResult >;