export declare class SourceFile { readonly path: string; readonly text: string; private readonly lineStarts; constructor(path: string, text: string); get length(): number; /** Convert a 0-based offset to 1-based line and column. */ getLineAndColumn(offset: number): { line: number; column: number; }; } //# sourceMappingURL=source.d.ts.map