import { TextStyle_TextAlignment } from 'ricos-schema'; type TextAlignOptions = { alignments: TextStyle_TextAlignment[]; textAlignment: TextStyle_TextAlignment; }; declare module '@tiptap/core' { interface Commands { textAlign: { /** * Set the text align attribute */ setTextAlign: (alignment: string) => ReturnType; unsetTextAlign: () => ReturnType; }; } } export declare const textAlign: import("ricos-types").RicosFunctionalExtension; export {}; //# sourceMappingURL=extension.d.ts.map