import { HTMLAttributes } from 'react'; export interface Props extends HTMLAttributes { type?: 'text' | 'loading' | 'thinking' | 'custom'; text?: string; onComplete?: any; readme?: string; typeSpeed?: number; pageData?: Record; config?: Record; }