import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter"; import { DescribeClusterSnapshotsCommandInput } from "../commands/DescribeClusterSnapshotsCommand"; import { RedshiftClient } from "../RedshiftClient"; /** * * @deprecated Use waitUntilSnapshotAvailable instead. waitForSnapshotAvailable does not throw error in non-success cases. */ export declare const waitForSnapshotAvailable: (params: WaiterConfiguration, input: DescribeClusterSnapshotsCommandInput) => Promise; /** * * @param params - Waiter configuration options. * @param input - The input to DescribeClusterSnapshotsCommand for polling. */ export declare const waitUntilSnapshotAvailable: (params: WaiterConfiguration, input: DescribeClusterSnapshotsCommandInput) => Promise;