import { Node } from './Node.js'; /** * Node with optional id. */ type NodeWithOptionalId = Omit & Pick, 'id'>; export { NodeWithOptionalId };