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