export declare const EDITOR_TOOLBAR_ITEMS: readonly ["format", "heading", "align", "list", "blockquote", "code", "link", "table", "image"]; export type EditorToolbarItem = (typeof EDITOR_TOOLBAR_ITEMS)[number]; export declare const DEFAULT_EDITOR_TOOLBAR: EditorToolbarItem[]; export declare const SIMPLE_EDITOR_TOOLBAR: EditorToolbarItem[]; export declare const SUB_TEXT_EDITOR_TOOLBAR: EditorToolbarItem[]; export declare function parseEditorToolbarItems(value: string | readonly string[] | null | undefined): EditorToolbarItem[];