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