export = KGNode;
declare class KGNode {
    constructor(id: any, info: any);
    id: any;
    _primaryID: any;
    _qgID: any;
    _curies: any;
    _semanticType: any;
    _nodeAttributes: any;
    _label: any;
    _sourceNodes: Set<any>;
    _targetNodes: Set<any>;
    _sourceQGNodes: Set<any>;
    _targetQGNodes: Set<any>;
    addSourceNode(kgNode: any): void;
    addTargetNode(kgNode: any): void;
    addSourceQGNode(qgNode: any): void;
    addTargetQGNode(qgNode: any): void;
}
