import type { SessionRecord } from './types.js'; export interface ParseStats { recordsTotal: number; recordsParsed: number; recordsSkipped: number; bytesRead: number; } export interface ParseResult { records: SessionRecord[]; stats: ParseStats; } export declare function parseFile(filePath: string): Promise; export declare function streamRecords(filePath: string, stats: ParseStats): AsyncGenerator; //# sourceMappingURL=parser.d.ts.map