import * as React from 'react'; import './Toolbar.less'; declare type ToolbarProps = { className?: string; clsPrefix?: string; plugins?: any; editor?: any; toolbar?: any[]; onClick?: (...args: any[]) => any; disabled?: boolean; }; declare class Toolbar extends React.Component { static defaultProps: { clsPrefix: string; plugins: {}; toolbar: any[]; }; renderGroup: (group: any, index: any) => JSX.Element; renderItem: (toolbarItem: any, index: any) => JSX.Element; render(): JSX.Element; } export default Toolbar;