import React from "react";
import type { IFormat } from "../type";
type Props = {
    t?: any;
    format?: IFormat;
    value: number | string | undefined;
    onChange?: (values: any[]) => void;
};
declare const NumberInput: (props: Props) => React.JSX.Element;
export default NumberInput;
