export declare type CacheValue = Intl.NumberFormat | Intl.DateTimeFormat | Intl.PluralRules | any; export interface MemoizeFormatConstructorFn { (constructor: T, cache?: Record): (...args: ConstructorParameters) => any; } declare const memoizeFormatConstructor: MemoizeFormatConstructorFn; export default memoizeFormatConstructor; //# sourceMappingURL=index.d.ts.map