import { type WaiterConfiguration, type WaiterResult } from "@smithy/core/client"; import { type GetAnnotationStoreVersionCommandInput, type GetAnnotationStoreVersionCommandOutput } from "../commands/GetAnnotationStoreVersionCommand"; import type { ResourceNotFoundException } from "../models/errors"; import type { OmicsServiceException } from "../models/OmicsServiceException"; import type { OmicsClient } from "../OmicsClient"; /** * Wait until an annotation store version is deleted. * @deprecated Use waitUntilAnnotationStoreVersionDeleted instead. waitForAnnotationStoreVersionDeleted does not throw error in non-success cases. */ export declare const waitForAnnotationStoreVersionDeleted: (params: WaiterConfiguration, input: GetAnnotationStoreVersionCommandInput) => Promise>; /** * Wait until an annotation store version is deleted. * @param params - Waiter configuration options. * @param input - The input to GetAnnotationStoreVersionCommand for polling. */ export declare const waitUntilAnnotationStoreVersionDeleted: (params: WaiterConfiguration, input: GetAnnotationStoreVersionCommandInput) => Promise>;