/** * Checks if a given string matches the regex. * @param {number | string | null | undefined} value - The value to check. * @returns {boolean} True if the string matches the format, false otherwise. */ export declare const numberMatchRegex: (value: number | string | null | undefined) => boolean; export declare const parseToNumber: (value: number | string) => number; export declare const parseToFrNumberFormat: (value: number | string) => string;