type ModifyInputNumberValueProps = {
    value: string | number;
    min?: number;
    max?: number;
    maxLength?: number;
};
export declare const modifyInputNumberValue: ({ value, min, max, maxLength, }: ModifyInputNumberValueProps) => boolean;
export {};
