import type { Node } from 'yoga-layout'; export type NodeContext = { insertNode: (childNode: Node, order?: number) => void; removeNode: (childNode: Node) => void; updateNodeOrder: (childNode: Node, order?: number) => void; }; export declare const nodeContextName = "__threlte-node"; export declare const createNodeContext: (node: Node) => NodeContext | undefined;