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"; /** * 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>;