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