import type { JSONObject } from 'tiny-types';
import { TinyType } from 'tiny-types';
import { Path } from './Path.js';
export declare class FileSystemLocation extends TinyType {
    readonly path: Path;
    readonly line?: number;
    readonly column?: number;
    static fromJSON(o: JSONObject): FileSystemLocation;
    constructor(path: Path, line?: number, column?: number);
}
//# sourceMappingURL=FileSystemLocation.d.ts.map