import { IProps } from '../../Editor'; import { ICommand } from '../../commands'; import './index.less'; export interface IToolbarProps extends IProps { overflow?: boolean; toolbarBottom?: boolean; onCommand?: (command: ICommand, groupName?: string) => void; commands?: ICommand[]; isChild?: boolean; } export declare function ToolbarItems(props: IToolbarProps): import("react/jsx-runtime").JSX.Element; export default function Toolbar(props?: IToolbarProps): import("react/jsx-runtime").JSX.Element;