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