type FormatFn = (value: number | bigint) => string; type InputType = 'time' | 'temperature' | 'bytes' | 'bits' | 'decimal' | 'currency' | 'percent' | 'throughput'; type Locals = 'en-US' | 'en-GB'; export declare function getFormatterFromCache(key: Array, inputType: InputType, formatterOptions: Intl.NumberFormatOptions, locals?: Locals): FormatFn; export interface IFormatterStats { countCacheItems: (inputType: InputType | 'all') => number; getKeys: (inputType: InputType) => string[]; } export declare const getFormatterStats: () => IFormatterStats; export {}; //# sourceMappingURL=formatterCache.d.ts.map