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