import { type TelemetryRecord } from "./types.js"; /** * Read a telemetry JSONL file and return all records that parse successfully * against the current schema. * * - Missing file -> empty array. * - Malformed JSON lines -> skipped silently. * - Schema-violating lines (e.g. from a future schema version or corruption) * -> skipped silently. This keeps the reader forward-compatible. */ export declare function readTelemetryJsonl(path: string): Promise; //# sourceMappingURL=reader.d.ts.map