/** * Read file from the filesystem */ export declare function safeReadFile(filePath: string): Promise; /** * Write file to a directory */ export declare function safeWriteFile(filePath: string, content: string, append?: boolean): Promise;