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