import { BaseNodeType } from "./BaseNodeType" import { NodeTypeKey, NodeWithAnyType } from "./nodeType" /** * Represents a node type with associated lifecycle and behavior * * @template TNode - Node structure that adheres to this type */ export type TypedNodeType = BaseNodeType< TNode, "typed", NodeTypeKey, never, unknown >