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