export interface TryReadFileResult { content: string; } /** * Attempts to read a file as UTF-8. Returns `{ content }` on success, * or `undefined` on any I/O error (EACCES, ENOENT, EISDIR, etc.). * * Note: binary files do NOT cause an error — `readFile("utf-8")` returns * mojibake for binary content. Only actual I/O failures return undefined. */ export declare function tryReadFile(path: string): Promise; //# sourceMappingURL=try-read-file.d.ts.map