import type { Node as ProseMirrorNode } from "@tiptap/pm/model"; import type { Editor } from "@tiptap/react"; interface ListFormProps { element?: ProseMirrorNode; editor: Editor | null; hideCloseButton?: boolean; /** * When true, only shows the list type toggle (ordered/unordered). * Used for channels like Slack and MS Teams that don't support styling options. */ minimalMode?: boolean; } export declare const ListForm: ({ element, editor, hideCloseButton, minimalMode, }: ListFormProps) => import("react/jsx-runtime").JSX.Element | null; export {};