export interface JsonlReadResult { entries: any[]; asOf?: string; partial: boolean; } /** Full-file JSONL reader for pull-mode insight. * It commits only complete newline-terminated rows and discards the trailing * partial row, matching the live transcript bridge's half-write tolerance. */ export declare function readCompleteJsonlObjects(path: string): JsonlReadResult; //# sourceMappingURL=jsonl.d.ts.map