import { type WaiterConfiguration, type WaiterResult } from "@smithy/util-waiter"; import { type GetRouterOutputCommandInput } from "../commands/GetRouterOutputCommand"; import type { MediaConnectClient } from "../MediaConnectClient"; /** * Wait until the Output is deleted * @deprecated Use waitUntilOutputDeleted instead. waitForOutputDeleted does not throw error in non-success cases. */ export declare const waitForOutputDeleted: (params: WaiterConfiguration, input: GetRouterOutputCommandInput) => Promise; /** * Wait until the Output is deleted * @param params - Waiter configuration options. * @param input - The input to GetRouterOutputCommand for polling. */ export declare const waitUntilOutputDeleted: (params: WaiterConfiguration, input: GetRouterOutputCommandInput) => Promise;