declare class ThinkCacheFile { constructor(config?: object) get(key: string): any set(key: string, content: any, timeout?: number): any delete(key: string): any gc(): void } export = ThinkCacheFile;