import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter"; import { DescribeSnapshotsCommandInput, DescribeSnapshotsCommandOutput, } from "../commands/DescribeSnapshotsCommand"; import { EC2Client } from "../EC2Client"; import { EC2ServiceException } from "../models/EC2ServiceException"; export declare const waitForSnapshotCompleted: ( params: WaiterConfiguration, input: DescribeSnapshotsCommandInput ) => Promise< WaiterResult >; export declare const waitUntilSnapshotCompleted: ( params: WaiterConfiguration, input: DescribeSnapshotsCommandInput ) => Promise>;