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