export interface IToolbarItemConfig {
    id: string;
    name?: string;
    exitName?: string;
    type?: 'button' | 'dropDown';
    icon?: string;
    exitIcon?: string;
    template?: any;
    component?: any;
    shortKey?: string;
    shortKeyWithCode?: string;
    params?: {
        [key: string]: any;
    };
    handler?(editor?: any, params?: any): void;
}
export declare const GET_CTRL_KEY: () => "⌘" | "Ctrl" | undefined;
export declare const GET_ALT_KEY: () => "Alt" | "⌥" | undefined;
export declare const DEFAULT_TOOLBARS: Record<string, IToolbarItemConfig>;
export declare const DEFAULT_TOOLBAR_CONFIG: (string | string[])[];
export declare const FONT_COLORS: string[];
export declare const FONT_SIZE_LIST: {
    name: string;
    value: number;
}[];
