import { WaiterConfiguration, WaiterResult } from "@smithy/core/client"; import { DescribeDBClusterSnapshotsCommandInput, DescribeDBClusterSnapshotsCommandOutput, } from "../commands/DescribeDBClusterSnapshotsCommand"; import { DBClusterSnapshotNotFoundFault } from "../models/errors"; import { RDSServiceException } from "../models/RDSServiceException"; import { RDSClient } from "../RDSClient"; export declare const waitForDBClusterSnapshotDeleted: ( params: WaiterConfiguration, input: DescribeDBClusterSnapshotsCommandInput ) => Promise< WaiterResult >; export declare const waitUntilDBClusterSnapshotDeleted: ( params: WaiterConfiguration, input: DescribeDBClusterSnapshotsCommandInput ) => Promise< WaiterResult< DescribeDBClusterSnapshotsCommandOutput | DBClusterSnapshotNotFoundFault > >;