export declare const getDecimalSeparator: () => string; export declare const getDecimalSeparators: () => string[]; export declare const getThousandSeparator: () => string; export declare const formatLocaleNumber: (number: number, minimumFractionDigits?: number) => string; export declare const parseLocaleNumber: (stringNumber: string) => number; export declare const getNegativeSymbol: () => string; export declare const parseFloatString: (value: string) => string; export declare const formatFloatString: (value: string) => string;