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