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