import { ICommand, defaultCommands } from '../../commands';
import { IMarkdownEditor, ToolBarProps } from '../..';
import './index.less';
export type Commands = keyof typeof defaultCommands | ICommand;
export interface IToolBarProps<T = Commands> extends ToolBarProps {
    className?: string;
    editorProps: IMarkdownEditor;
    mode?: boolean;
    prefixCls?: string;
    toolbars?: T[];
    onClick?: (type: string) => void;
}
export default function ToolBar(props: IToolBarProps): import("react/jsx-runtime").JSX.Element | null;
