export interface TimedCacheOptions { timeout: number; useTimer: boolean; createKey: (args: string[]) => string; } export declare function timedCache string>(fn: T, { timeout, useTimer, createKey }: TimedCacheOptions): { get: T; cache: Map; }; //# sourceMappingURL=timed-cache.d.ts.map