/** * Synchronous read of a file as text using UTF-8 encoding. */ export declare const readFile: (path: string) => string; /** * Synchronous read of a file as UTF-8 text, parsing it as JSON. */ export declare const readJson: (path: string) => T; //# sourceMappingURL=read-file.d.ts.map