import { ParagraphOptions } from '@tiptap/extension-paragraph'; export declare enum Paragraphs { BIG_TEXT = "bigText", NORMAL_TEXT = "normalText", SMALL_TEXT = "smallText" } export declare const DEFAULT_FONT_SIZE = 14; export declare const styling: { [k in Paragraphs]: { class: string; fontSize: number; }; }; declare module '@tiptap/core' { interface Commands { paragraphExtended: { setParagraphExtended: (size: string) => ReturnType; }; } } export interface ParagraphOptionsExtended extends ParagraphOptions { sizes: Paragraphs[]; } export declare const ParagraphExtended: import('@tiptap/core').Node; export default ParagraphExtended;