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