import { ComponentOptions, HandlerFunc } from "../ui/toolbar/type"; export interface ToolbarStringMap { [key: string]: string | ComponentOptions[]; } export declare type ToolbarConfig = string | ToolbarStringMap; export interface Options { container?: string | HTMLElement | ToolbarConfig[][]; handlers?: Record; } export declare const DEFAULT_TOOLBAR_OPTIONS: Options;