import { type WaiterConfiguration, type WaiterResult } from "@smithy/util-waiter"; import { type DescribeFlowCommandInput } from "../commands/DescribeFlowCommand"; import type { MediaConnectClient } from "../MediaConnectClient"; /** * Wait until a flow is in standby mode * @deprecated Use waitUntilFlowStandby instead. waitForFlowStandby does not throw error in non-success cases. */ export declare const waitForFlowStandby: (params: WaiterConfiguration, input: DescribeFlowCommandInput) => Promise; /** * Wait until a flow is in standby mode * @param params - Waiter configuration options. * @param input - The input to DescribeFlowCommand for polling. */ export declare const waitUntilFlowStandby: (params: WaiterConfiguration, input: DescribeFlowCommandInput) => Promise;