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