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