export declare const getCachedData: <T>(filePath: string, newContent: string) => T | undefined;
export declare const saveCache: <T>(filePath: string, content: string, data: T) => void;
export declare const buildInfoFileSave: () => void;
