import * as React from 'react'; export interface TypingIndicatorProps extends React.HTMLAttributes { label?: string; } declare function TypingIndicator({ className, label, ...props }: TypingIndicatorProps): import("react/jsx-runtime").JSX.Element; /** * StreamingIndicator is an alias for TypingIndicator used by chat consumers * whose domain is "agent response streaming" rather than "user typing". * Both names resolve to the same underlying component per SPD-1 ABSORB * verdict + Lane C plan D2. */ declare const StreamingIndicator: typeof TypingIndicator; type StreamingIndicatorProps = TypingIndicatorProps; export { TypingIndicator, StreamingIndicator }; export type { StreamingIndicatorProps };