/**
 * 缓存函数
 */
declare function withCache<T extends (...args: any[]) => any>(fn: T): T;

export { withCache };
