export declare type Decoration = { type: DecorationType; value?: string; }; export declare type DecorationType = 'plain' | 'bold' | 'italic' | 'underline' | 'strikethrough' | 'link' | 'code' | 'color' | 'equation';