import type { FileSystem } from "../ports/filesystem.js"; export interface ReadRangeResult { path: string; content?: string | undefined; startLine?: number | undefined; endLine?: number | undefined; reason?: string | undefined; truncated?: boolean | undefined; clipped?: boolean | undefined; } export declare function readRange(filePath: string, start: number, end: number, opts: { fs: FileSystem; }): Promise; //# sourceMappingURL=read-range.d.ts.map