import React from 'react';
import type { Channel } from 'stream-chat';
export type AIStateIndicatorProps = {
    channel?: Channel;
};
export declare const AIStateIndicator: ({ channel: channelFromProps, }: AIStateIndicatorProps) => React.JSX.Element | null;
