UNPKG

plazbot

Version:

Official Plazbot SDK for creating AI agents for WhatsApp, portals, and developers.

11 lines (10 loc) 423 B
import type { CSSProperties } from 'react'; export interface StreamingTextProps { content: string; /** Velocidad en ms por caracter (default: 15) */ speed?: number; /** Callback cuando termina de renderizar */ onComplete?: () => void; style?: CSSProperties; } export declare function StreamingText({ content, speed, onComplete, style }: StreamingTextProps): import("react/jsx-runtime").JSX.Element;