import React, { ReactNode } from "react";
export interface TypingTextProps {
    children: ReactNode;
    as?: any;
    className?: string;
    delay?: number;
    duration?: number;
    fontSize?: string;
    fontWeight?: string;
    color?: string;
    letterSpacing?: string;
    align?: "left" | "center" | "right";
    loop?: boolean;
}
export declare const TypingText: ({ children, as: Component, className, delay, duration, fontSize, fontWeight, color, letterSpacing, align, loop, }: TypingTextProps) => React.DetailedReactHTMLElement<React.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>;
