import React from "react";
export interface Ui89InputTextNumberProps {
    emptyValue?: any;
    value?: any;
    min?: number;
    max?: number;
    onChange?: (value: any) => void;
    precision?: number;
}
export declare function isTextNumber(text: string): boolean;
export declare function Ui89InputTextNumber({ 
/**
 * The value that is emitted when the input is emptied.
 */
emptyValue, value, min, max, onChange, precision, }: Ui89InputTextNumberProps): React.JSX.Element;
