import { type WaiterConfiguration, type WaiterResult } from "@smithy/util-waiter"; import { type DescribeSnapshotsCommandInput, type DescribeSnapshotsCommandOutput } from "../commands/DescribeSnapshotsCommand"; import type { EC2Client } from "../EC2Client"; import type { EC2ServiceException } from "../models/EC2ServiceException"; /** * * @deprecated Use waitUntilSnapshotCompleted instead. waitForSnapshotCompleted does not throw error in non-success cases. */ export declare const waitForSnapshotCompleted: (params: WaiterConfiguration, input: DescribeSnapshotsCommandInput) => Promise>; /** * * @param params - Waiter configuration options. * @param input - The input to DescribeSnapshotsCommand for polling. */ export declare const waitUntilSnapshotCompleted: (params: WaiterConfiguration, input: DescribeSnapshotsCommandInput) => Promise>;