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