import { Mark, MarkSpec } from 'prosemirror-model'; export interface TextColorAttributes { /** * @pattern "^#[0-9a-f]{6}$" */ color: string; } /** * @name textColor_mark */ export interface TextColorDefinition { type: 'textColor'; attrs: TextColorAttributes; } export interface TextColorMark extends Mark { attrs: TextColorAttributes; } /** New borders for colors in the color picker */ export declare const borderColorPalette: { orange: string; teal: string; red: string; 'light-gray': string; purple: string; green: string; }; export declare const colorPalette: Map; export declare const textColor: MarkSpec;