import { JDEventSource } from "./eventsource"; /** * Base class for JDOM Node classes. * @category JDOM */ export declare abstract class JDNode extends JDEventSource { private _nodeData; constructor(); /** * Globally unique identifier in the tree * @category JDOM */ abstract get id(): string; /** * Gets a kind identifier useful for UI descriptions * @category JDOM */ abstract get nodeKind(): string; /** * Gets the local name * @category JDOM */ abstract get name(): string; /** * A human friendly name * @category JDOM */ get friendlyName(): string; /** * Gets the name including parents * @category JDOM */ abstract get qualifiedName(): string; /** * Gets the parent node in the Jacdac dom * @category JDOM */ abstract get parent(): JDNode; /** * Gets the children of the current node * @category JDOM */ abstract get children(): JDNode[]; /** * Gets a databag to store custom information * @category JDOM */ get nodeData(): Record; /** * Emit event in current node and parent nodes * @param event event to emit * @param arg event arguments * @category JDOM */ emitPropagated(event: string, arg?: any): void; /** * @hidden */ toString(): string; } //# sourceMappingURL=node.d.ts.map