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 deleted * @deprecated Use waitUntilFlowDeleted instead. waitForFlowDeleted does not throw error in non-success cases. */ export declare const waitForFlowDeleted: (params: WaiterConfiguration, input: DescribeFlowCommandInput) => Promise; /** * Wait until a flow is deleted * @param params - Waiter configuration options. * @param input - The input to DescribeFlowCommand for polling. */ export declare const waitUntilFlowDeleted: (params: WaiterConfiguration, input: DescribeFlowCommandInput) => Promise;