import * as files from "./index.js"; /** represents a location inside the document base, i.e. a line inside a file */ export declare class Location { file: files.FullFilePath; line: number; sourceDir: files.SourceDir; constructor(sourceDir: files.SourceDir, file: files.FullFilePath, line: number); /** provides an empty location for testing */ static scaffold(): Location; /** provides the absolute path to the file in this location */ absoluteFilePath(): files.AbsoluteFilePath; /** provides a copy of this Location with the given file */ withFile(file: files.FullFilePath): Location; /** provides a copy of this Location with the given line */ withLine(line: number): Location; } //# sourceMappingURL=location.d.ts.map