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