import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter"; import { DescribeImagesCommandInput, DescribeImagesCommandOutput, } from "../commands/DescribeImagesCommand"; import { EC2Client } from "../EC2Client"; import { EC2ServiceException } from "../models/EC2ServiceException"; export declare const waitForImageAvailable: ( params: WaiterConfiguration, input: DescribeImagesCommandInput ) => Promise>; export declare const waitUntilImageAvailable: ( params: WaiterConfiguration, input: DescribeImagesCommandInput ) => Promise>;