/** * @description 文件处理相关 */ export declare class PontFileManager { static getLocalFilePath(rootDir: string, filename: string, customPath?: string): string; static loadJson(filePath: string): T; static loadJsonPromise(filePath: string): Promise; static writeJson(filePath: string, obj: T): void; static loadFile(filePath: string): string; static saveFile(filePath: string, content: string): void; static appendFile(filePath: string, content: string): void | Promise; static removeFile(filePath: string): Promise; }