/** * Read specific lines from a source file. * @param filePath Path to the source file * @param start Start line (1-based, inclusive) * @param end End line (1-based, inclusive) * @returns Array of source lines, or [''] on error */ export declare function readSourceLines(filePath: string, start: number, end: number): Promise; /** * Read specific lines from a source file as a single string. * @param filePath Path to the source file * @param start Start line (1-based, inclusive) * @param end End line (1-based, inclusive) * @returns Source code string, or '' on error */ export declare function readSourceAsString(filePath: string, start: number, end: number): Promise; /** * Read all lines from a source file. * @param filePath Path to the source file * @returns Array of all source lines, or empty array on error */ export declare function readAllLines(filePath: string): Promise; //# sourceMappingURL=source-reader.d.ts.map