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