import ts from "typescript"; import { NodeLocation } from "../core/NodeLocation"; export interface NodeLocationMapOptions { sourceRoot: string; } export declare class NodeLocationMap { private readonly sourceMaps; private readonly sourceRoot; constructor(opts: NodeLocationMapOptions); getNodeLocation(node: ts.Node): NodeLocation; getLocationFactory(source: ts.SourceFile): NodeLocationFactory; } declare class NodeLocationFactory { readonly sourceRoot: string; constructor(sourceRoot: string); getNodeLocation(node: ts.Node): NodeLocation; } export {}; //# sourceMappingURL=NodeLocationMap.d.ts.map