import { SerializableThing, IriString } from '@openhps/rdf'; import { Relation } from './Relation'; import { Collection } from './Collection'; export declare class Node extends SerializableThing { relations: Relation[]; collection?: Collection; constructor(iri?: IriString); getChildNodes(): Node[]; /** * Get child node * @param value * @returns Child node if found */ getChildNode(value: object): Node; } //# sourceMappingURL=Node.d.ts.map