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;
