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"; import type { ResourceNotFoundException } from "../models/errors"; /** * Wait until a Cluster is gone * @deprecated Use waitUntilClusterNotExists instead. waitForClusterNotExists does not throw error in non-success cases. */ export declare const waitForClusterNotExists: (params: WaiterConfiguration, input: GetClusterCommandInput) => Promise>; /** * Wait until a Cluster is gone * @param params - Waiter configuration options. * @param input - The input to GetClusterCommand for polling. */ export declare const waitUntilClusterNotExists: (params: WaiterConfiguration, input: GetClusterCommandInput) => Promise>;