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 available. * @deprecated Use waitUntilCacheClusterAvailable instead. waitForCacheClusterAvailable does not throw error in non-success cases. */ export declare const waitForCacheClusterAvailable: (params: WaiterConfiguration, input: DescribeCacheClustersCommandInput) => Promise; /** * Wait until ElastiCache cluster is available. * @param params - Waiter configuration options. * @param input - The input to DescribeCacheClustersCommand for polling. */ export declare const waitUntilCacheClusterAvailable: (params: WaiterConfiguration, input: DescribeCacheClustersCommandInput) => Promise;