/** * Reads a file from the filesystem and returns as a string. * * Errors: * - `read-file/unknown` * - _if the file doesn't exist, will return_ `undefined` * * Where possible, use the following functions to be explicit about the * base directory you are intending: * - `libraryDirectory()`, * - `homeDirectory()`, * - `currentDirectory()` * * If, however, the filename starts with `~/` or `./` the appropriate base * will be deduced as well. */ export declare function readFile(filename: string): string | undefined; //# sourceMappingURL=readFile.d.ts.map