import { type WaiterConfiguration, type WaiterResult } from "@smithy/core/client"; import { type DescribeStreamCommandInput, type DescribeStreamCommandOutput } from "../commands/DescribeStreamCommand"; import type { KinesisClient } from "../KinesisClient"; import type { ResourceNotFoundException } from "../models/errors"; import type { KinesisServiceException } from "../models/KinesisServiceException"; /** * * @deprecated Use waitUntilStreamNotExists instead. waitForStreamNotExists does not throw error in non-success cases. */ export declare const waitForStreamNotExists: (params: WaiterConfiguration, input: DescribeStreamCommandInput) => Promise>; /** * * @param params - Waiter configuration options. * @param input - The input to DescribeStreamCommand for polling. */ export declare const waitUntilStreamNotExists: (params: WaiterConfiguration, input: DescribeStreamCommandInput) => Promise>;