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