import '@tiptap/extension-text-style';
declare module '@tiptap/core' {
    interface Commands<ReturnType> {
        fontSize: {
            /**
             * Set the font family
             */
            setFontSize: (fontSize: string) => ReturnType;
        };
    }
}
export declare const FontSize: any;
