import { Node, Relation } from '../Type/Definition/index.js'; /** * Class which helps to parse elements. * * **⚠️ Warning**: This is an internal class. You should not use it directly. * * @internal */ declare class ElementParser { rawElementToNodeOrRelation(element: object): Node | Relation; } export { ElementParser };