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