declare class LineReader { lines: string[]; index: number; constructor(text: string); readLine(): string | null; } export default LineReader;