export interface JsonReadResult { path: string; exists: boolean; value: unknown | null; error: string | null; } export declare function readJsonSafely(path: string): JsonReadResult; //# sourceMappingURL=json.d.ts.map