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