import { INode } from "./INode";
/**
 * Represents an item of a node.
 */
export declare class NodeItem {
    /**
     * The node of the item.
     */
    private node;
    /**
     * Initializes a new instance of the `NodeItem` class.
     */
    constructor(node: INode);
    /**
     * Gets or sets the node of the item.
     */
    readonly Node: INode;
    /**
     * Gets the identifiable objects of the node.
     */
    GetObjects(): {
        [id: string]: any;
    };
}
