interface TypingIndicatorProps { /** Visible + accessible text. If omitted and `names` is set, text is generated. */ label?: string; /** People currently typing — used to build the label when `label` is not set. */ names?: string[]; /** Show the label next to the dots. Default: true when there is text. */ showText?: boolean; size?: 'sm' | 'md' | 'lg'; /** `bubble` looks like a chat message; `plain` is just dots (+ optional text). */ variant?: 'bubble' | 'plain'; class?: string; } declare const TypingIndicator: import("svelte").Component; type TypingIndicator = ReturnType; export default TypingIndicator;