import { Editor } from '@tiptap/react'; /** * Props for the TextCommands component * @interface TextCommandsProps * @property {Editor} editor */ interface TextCommandsProps { editor: Editor; } export default function TextCommands({ editor }: TextCommandsProps): import("react/jsx-runtime").JSX.Element | null; export {};