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