import { type WaiterConfiguration, type WaiterResult } from "@smithy/core/client"; import { type DescribeDBClustersCommandInput, type DescribeDBClustersCommandOutput } from "../commands/DescribeDBClustersCommand"; import type { RDSServiceException } from "../models/RDSServiceException"; import type { RDSClient } from "../RDSClient"; /** * * @deprecated Use waitUntilDBClusterAvailable instead. waitForDBClusterAvailable does not throw error in non-success cases. */ export declare const waitForDBClusterAvailable: (params: WaiterConfiguration, input: DescribeDBClustersCommandInput) => Promise>; /** * * @param params - Waiter configuration options. * @param input - The input to DescribeDBClustersCommand for polling. */ export declare const waitUntilDBClusterAvailable: (params: WaiterConfiguration, input: DescribeDBClustersCommandInput) => Promise>;