import type { ActionSchema, FormBaseControl } from '../types';
export * from './components/types';
export * from './ButtonGroup.types';
export * from './Action.types';
export * from './DropDownButton.types';
/**
 * Button Toolar 渲染器。
 *
 */
export interface ButtonToolbarSchema extends FormBaseControl {
    /**
     * 指定为按钮工具集合类型
     */
    type: 'button-toolbar';
    buttons: Array<ActionSchema>;
}
