/// import type { Readable } from 'node:stream'; export declare function jsonlReadFile(filePath: string): Readable; export type JSONLEntry = { filePath: string; key: number; value: T; };