import React from 'react'; import { BaseTool } from 'kgsheet'; import { TooltipPlacement } from 'antd/es/tooltip'; interface Props { tool: BaseTool; style: React.CSSProperties; toolTipPlacement?: TooltipPlacement; needLabel?: boolean; } declare const ButtonTool: ({ tool, style, needLabel, toolTipPlacement }: Props) => JSX.Element; export default ButtonTool;