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