import { ApiNode } from "./apiNode"; /** * Creates a Node object but does not add it to the graph space * @category Node * @since 0.0.1 */ export declare function makeNode({ id, category, properties, collection, }?: Partial): ApiNode;