import React, { FunctionComponent } from 'react'; import { DataNode } from 'rc-tree/lib/interface'; import { IActions, ActionType } from '../interface'; import './index.scss'; interface OperateBarProps { opRef: any; mouseInRef: any; actionsCallback?: (nodeData: DataNode, type: ActionType, evt?: React.MouseEvent) => void; showActions?: IActions; onRemove?: (anchorEl: HTMLElement) => void; } declare const OperateBar: FunctionComponent; export default OperateBar;