export interface LocaleSeparators { group: string; decimal: string; } export declare function getLocaleSeparators(locale: string): LocaleSeparators; export declare function formatNumberValue(value: number | null | undefined, decimals: number, separators: LocaleSeparators): string; export declare function parseNumberInput(raw: string | null | undefined, separators: LocaleSeparators): number | null;