export type JsonObjectReadResult = { status: 'missing'; } | { status: 'error'; kind: 'read' | 'invalid'; error: Error; } | { status: 'present'; value: Record; }; /** Read a JSON object without ever creating or rewriting the source file. */ export declare function readJsonObjectFile(filePath: string): Promise; //# sourceMappingURL=json-object.d.ts.map