import type { Node as ProseMirrorNode } from "@tiptap/pm/model"; import type { Editor } from "@tiptap/react"; interface ColumnCellFormProps { element?: ProseMirrorNode; editor: Editor | null; hideCloseButton?: boolean; } export declare const ColumnCellForm: ({ element, editor, hideCloseButton, }: ColumnCellFormProps) => import("react/jsx-runtime").JSX.Element | null; export {};