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