import { INode } from "./INode.js";
/**
 * Represents an item of a node.
 */
export declare class NodeItem {
    /**
     * The node of the item.
     */
    private node;
    /**
     * Initializes a new instance of the {@link NodeItem `NodeItem`} class.
     *
     * @param node
     * The node of the item.
     */
    constructor(node: INode);
    /**
     * Gets or sets the node of the item.
     */
    get Node(): INode;
    /**
     * Gets the identifiable objects of the node.
     *
     * @returns
     * The objects of the node.
     */
    GetObjects(): Record<string, unknown>;
}
