/**
 * @AI-Generated
 * FontSize 扩展：用于 Tiptap 富文本编辑器，支持字体大小设置
 */
import { Mark } from '@tiptap/core';
declare module '@tiptap/core' {
    interface Commands<ReturnType> {
        fontSize: {
            /**
             * 设置字体大小
             * @param fontSize 字体大小（如 '16px'）
             */
            setFontSize: (fontSize: string) => ReturnType;
            /**
             * 移除字体大小
             */
            unsetFontSize: () => ReturnType;
        };
    }
}
declare const FontSize: Mark<any, any>;
export default FontSize;
