export declare namespace dcache { function memoizeAsync(func: Function, timeoutms?: number, customKey?: string): (...args: any) => Promise; function memoize(func: Function, timeoutms?: number, customKey?: string): (...args: any) => any; function ensureOneCallAsync(func: Function): (...args: any) => Promise; }