import type { Level } from "@tiptap/extension-heading"; declare module "@tiptap/core" { interface Commands { heading: { setHeading: (attributes: { level: Level; }) => ReturnType; toggleHeading: (attributes: { level: Level; }) => ReturnType; }; textAlign: { setTextAlign: (alignment: string) => ReturnType; unsetTextAlign: () => ReturnType; }; } } export declare const Heading: import("@tiptap/core").Node; export default Heading;