/**
* @description toolbar react component
* @author wangfupeng
*/
///
import * as wangEditor from '@wangeditor/editor';
interface IProps {
editor: wangEditor.IDomEditor | null;
defaultConfig?: Partial;
mode?: string;
style?: object;
className?: string;
}
declare function ToolbarComponent(props: IProps): JSX.Element;
export default ToolbarComponent;