/** Transcribed group-by-group from the editor's built-in toolbar layout so that * `toolbar: true` (the default) renders identically to the hard-coded original. */ export declare const DEFAULT_TOOLBAR: string; /** Transcribed from the editor's built-in menu keys so that `menubar: true` (the * default) renders identically to the hard-coded original. */ export declare const DEFAULT_MENUBAR = "file edit view insert format tools table help"; export declare const FONTS: [string, string][]; export declare const SIZES: string[]; export declare const MIN_FONT_PX = 1; export declare const MAX_FONT_PX = 100; export declare const LINE_HEIGHTS: string[]; export declare const WORD_SPACINGS: string[]; export declare const LETTER_SPACINGS: string[]; /** Languages offered by the code-sample dialog: [value stored in data-lang, label]. */ export declare const CODE_LANGS: [string, string][]; export declare const BLOCKS: [string, string][]; /** Quick-access text color chips shown directly in the toolbar. */ export declare const QUICK_COLORS: string[]; /** 25 swatches — a 5×5 grid in the picker (pastels, brights, darks, grays, * then pink/brown/cyan + black/white). Shared by fore/back color and cell fill. */ export declare const COLORS: string[]; /** Category key = i18n string key for the tab label in the picker dialogs. */ export interface GlyphCategory { key: string; chars: string[]; } /** Special-character map, grouped for the two-pane picker (tabs left, glyphs right). * `CHARS` below is the legacy flat list and is kept exported for back-compat. */ export declare const CHAR_CATEGORIES: GlyphCategory[]; /** Emoji map for the emoji picker — same two-pane dialog as the character map. */ export declare const EMOJI_CATEGORIES: GlyphCategory[]; export declare const CHARS: string[];