/**
 * Props for the typing indicator shown while the assistant is generating
 * a reply.
 */
export interface ChatbotTypingIndicatorProps {
    className?: string;
}
/**
 * Three animated dots signalling "assistant is typing".
 * Implemented in pure Tailwind — no additional dependencies.
 */
export default function ChatbotTypingIndicator({ className, }: Readonly<ChatbotTypingIndicatorProps>): import("react/jsx-runtime").JSX.Element;
//# sourceMappingURL=ChatbotTypingIndicator.d.ts.map