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