/** * Safely reads the tail of a file without loading the entire * file into memory. It bounds the read to the end of the file. * We restrict max bytes read (default 1MB) to prevent massive memory payloads causing OOM faults. */ export declare function tailFileBounded(filePath: string, maxBytes?: number): Promise; //# sourceMappingURL=tail.d.ts.map