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