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