/// /** * Filesystem abstraction. * @property fs Filesystem. * @property fs.readFile Reads a file. * @property fs.writeFile Writes a file. * @property fs.exists Checks if a file exists. * * @remarks I have no idea why this is here. (blame Synapse devs) */ export declare const nodeFilesystem: { fs: { readFile: (path: string, encoding?: BufferEncoding) => string; writeFile: (path: string, contents: string | Buffer, encoding?: BufferEncoding) => void; exists: (path: string) => boolean; }; };