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