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