import type React from 'react'; export type NodeRenderer = ( node: T & { type: string; key: string; html_id?: string }, children?: React.ReactNode, ) => React.ReactNode;