export declare class FileSystemHelper { writeFile(path: string, content: string): Promise; mkdirRecursive(path: string): Promise; getDirs(path: string): string[]; }