export interface UseAgentTypingIndicatorOptions { mode?: 'thinking' | 'exploring' | 'writing'; autoCycle?: boolean; cycleMs?: number; exploringAfterMs?: number; writingAfterMs?: number; messages?: string[]; } export declare function useAgentTypingIndicator({ mode, autoCycle, cycleMs, exploringAfterMs, writingAfterMs, messages, }: UseAgentTypingIndicatorOptions): { label: string; };