import { type WaiterConfiguration, type WaiterResult } from "@smithy/core/client"; import { type DescribeDBClusterSnapshotsCommandInput, type DescribeDBClusterSnapshotsCommandOutput } from "../commands/DescribeDBClusterSnapshotsCommand"; import type { DBClusterSnapshotNotFoundFault } from "../models/errors"; import type { RDSServiceException } from "../models/RDSServiceException"; import type { RDSClient } from "../RDSClient"; /** * * @deprecated Use waitUntilDBClusterSnapshotDeleted instead. waitForDBClusterSnapshotDeleted does not throw error in non-success cases. */ export declare const waitForDBClusterSnapshotDeleted: (params: WaiterConfiguration, input: DescribeDBClusterSnapshotsCommandInput) => Promise>; /** * * @param params - Waiter configuration options. * @param input - The input to DescribeDBClusterSnapshotsCommand for polling. */ export declare const waitUntilDBClusterSnapshotDeleted: (params: WaiterConfiguration, input: DescribeDBClusterSnapshotsCommandInput) => Promise>;