import { PlaceLocation } from "../place/location"; import { QualifyPathNode } from "../qualify/pathNode"; export declare class StructureLocation { private categoryNr; private pathNode; private placeLocation; constructor(categoryNr: number, pathNode: QualifyPathNode, placeLocation: PlaceLocation); getCategoryNr(): number; getPathNode(): QualifyPathNode; getPlaceLocation(): PlaceLocation; toString(): string; }