import { type WaiterConfiguration, type WaiterResult } from "@smithy/core/client"; import { type GetWorkflowCommandInput, type GetWorkflowCommandOutput } from "../commands/GetWorkflowCommand"; import type { OmicsServiceException } from "../models/OmicsServiceException"; import type { OmicsClient } from "../OmicsClient"; /** * Wait until a workflow is active. * @deprecated Use waitUntilWorkflowActive instead. waitForWorkflowActive does not throw error in non-success cases. */ export declare const waitForWorkflowActive: (params: WaiterConfiguration, input: GetWorkflowCommandInput) => Promise>; /** * Wait until a workflow is active. * @param params - Waiter configuration options. * @param input - The input to GetWorkflowCommand for polling. */ export declare const waitUntilWorkflowActive: (params: WaiterConfiguration, input: GetWorkflowCommandInput) => Promise>;