export declare const allowedDecimalRegex: RegExp; export declare const extractDecimalFromString: (value: string) => string; export declare const composeNewDecimalValue: (props: { selectionStart?: number | null; selectionEnd?: number | null; lastValue: string; newValue: string; }) => string; export declare const isNumberRound: (a: number) => boolean; export declare const floatAddDumb: (a: number, b: number) => number; export declare const floatSubDumb: (a: number, b: number) => number; export declare const floatMultDumb: (a: number, b: number) => number; export declare const floatDivDumb: (a: number, b: number) => number;