import { type WaiterConfiguration, type WaiterResult } from "@smithy/core/client"; import { type GetClusterCommandInput, type GetClusterCommandOutput } from "../commands/GetClusterCommand"; import type { DSQLClient } from "../DSQLClient"; import type { DSQLServiceException } from "../models/DSQLServiceException"; /** * Wait until a Cluster is ACTIVE * @deprecated Use waitUntilClusterActive instead. waitForClusterActive does not throw error in non-success cases. */ export declare const waitForClusterActive: (params: WaiterConfiguration, input: GetClusterCommandInput) => Promise>; /** * Wait until a Cluster is ACTIVE * @param params - Waiter configuration options. * @param input - The input to GetClusterCommand for polling. */ export declare const waitUntilClusterActive: (params: WaiterConfiguration, input: GetClusterCommandInput) => Promise>;