export declare function getSeparatorsFromLocale(locale?: string): { thousandSeparator: string; decimalSeparator: string; }; export declare function applyLocale(locale: string | true | undefined, options: { thousandSeparator?: string; decimalSeparator?: string; }): { thousandSeparator?: string; decimalSeparator?: string; };