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