export default class FileCache { cache: Record; add(filePath: string, value: any, key?: string): void; get(key: string): any; }