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