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