import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter"; import { DescribeServerCommandInput } from "../commands/DescribeServerCommand"; import { TransferClient } from "../TransferClient"; /** * * @deprecated Use waitUntilServerOnline instead. waitForServerOnline does not throw error in non-success cases. */ export declare const waitForServerOnline: (params: WaiterConfiguration, input: DescribeServerCommandInput) => Promise; /** * * @param params - Waiter configuration options. * @param input - The input to DescribeServerCommand for polling. */ export declare const waitUntilServerOnline: (params: WaiterConfiguration, input: DescribeServerCommandInput) => Promise;