import React from 'react';
interface EditorToolbarProps {
    editor: any;
    executeCommand: (command: string, value?: any) => void;
    showFontColorPanel: boolean;
    setShowFontColorPanel: (v: boolean) => void;
    showBgColorPanel: boolean;
    setShowBgColorPanel: (v: boolean) => void;
    setShowTableConfigModal: (v: boolean) => void;
    setShowTableBorderModal: (v: boolean) => void;
    setShowDropdownModal: (v: boolean) => void;
    activeMenuItem: string;
    setActiveMenuItem: (id: string) => void;
    handleMenuClick: (id: string) => void;
}
declare const EditorToolbar: React.FC<EditorToolbarProps>;
export default EditorToolbar;
