import { type NodeViewProps } from "@tiptap/react"; /** * List NodeView component that renders the list. * * Uses SortableItemWrapper for proper drag-and-drop reordering, * selection styling, and action buttons (duplicate, delete). * * When nested inside a blockquote, uses a simpler wrapper without * drag handles or selection behavior to let the blockquote handle those. */ export declare const ListComponentNode: (props: NodeViewProps) => import("react/jsx-runtime").JSX.Element; export default ListComponentNode;