import React from "react";
import "../style/input-box.css";
import "../style/typo.css";
export interface Ui89InputTextProps {
    value?: any;
    placeholder?: string;
    autoTrim?: boolean;
    onChange?: (value: any) => void;
    onTyping?: (value: boolean) => void;
    onFocus?: () => void;
    onBlur?: () => void;
}
export declare function Ui89InputText({ value, placeholder, autoTrim, onChange, onTyping, onFocus, onBlur, }: Ui89InputTextProps): React.JSX.Element;
