import type { FunctionalComponent, VNode } from 'vue'; import type { WithFalse } from '../../typings'; import './index.less'; export declare type ListToolBarSetting = { icon: JSX.Element; tooltip?: string; key?: string; onClick?: (key?: string) => void; }; declare type SettingPropType = ListToolBarSetting | VNode; export declare type ListToolBarProps = { actions?: WithFalse; settings?: WithFalse; }; declare const ListToolBar: FunctionalComponent; export default ListToolBar;