import { type WaiterConfiguration, type WaiterResult } from "@smithy/core/client"; import { type DescribeCacheClustersCommandInput, type DescribeCacheClustersCommandOutput } from "../commands/DescribeCacheClustersCommand"; import type { ElastiCacheClient } from "../ElastiCacheClient"; import type { ElastiCacheServiceException } from "../models/ElastiCacheServiceException"; import type { CacheClusterNotFoundFault } from "../models/errors"; /** * Wait until ElastiCache cluster is deleted. * @deprecated Use waitUntilCacheClusterDeleted instead. waitForCacheClusterDeleted does not throw error in non-success cases. */ export declare const waitForCacheClusterDeleted: (params: WaiterConfiguration, input: DescribeCacheClustersCommandInput) => Promise>; /** * Wait until ElastiCache cluster is deleted. * @param params - Waiter configuration options. * @param input - The input to DescribeCacheClustersCommand for polling. */ export declare const waitUntilCacheClusterDeleted: (params: WaiterConfiguration, input: DescribeCacheClustersCommandInput) => Promise>;