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