import { type WaiterConfiguration, type WaiterResult } from "@smithy/util-waiter"; import { type DescribeCacheClustersCommandInput } from "../commands/DescribeCacheClustersCommand"; import type { ElastiCacheClient } from "../ElastiCacheClient"; /** * 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;