/** * TypingIndicator — animated three-dot affordance shown above the input * when an agent or the AI is composing a reply. Driven entirely by store * signals; no manual show/hide DOM toggling. */ import type { JSX } from "preact"; import type { ChatStore } from "../store/chat-store"; interface TypingIndicatorProps { store: ChatStore; } export declare function TypingIndicator({ store }: TypingIndicatorProps): JSX.Element; export {};