import { EventEnvelope } from "./types.js"; export type ParseError = { line: number; kind: "invalid_json" | "missing_fields" | "unsupported_version"; detail: string; }; export type ParseResult = { events: EventEnvelope[]; errors: ParseError[]; }; export declare function parseStatelogJsonl(text: string): ParseResult;