import React from "react";
export interface HTMLTyperProps {
    html: string;
    speed?: number;
    className?: string;
    style?: React.CSSProperties;
}
