export declare class FileSystemUtils { private static isWindowsBasePath; private static normalizeSegments; static joinPath(basePath: string, ...segments: string[]): string; static createDirectory(dirPath: string): Promise; static fileExists(filePath: string): Promise; static canWriteFile(filePath: string): Promise; static directoryExists(dirPath: string): Promise; static writeFile(filePath: string, content: string): Promise; static readFile(filePath: string): Promise; static updateFileWithMarkers(filePath: string, content: string, startMarker: string, endMarker: string): Promise; static ensureWritePermissions(dirPath: string): Promise; } //# sourceMappingURL=file-system.d.ts.map