/// export declare class FileHelper { filePath: string; constructor(filePath: string); getContent(): Promise; save(content: string): Promise; exists(): boolean; create(): Promise; }