import { default as React } from 'react'; import { ShapeKind } from '../types'; interface ShapeToolProps { mode: 'shape' | 'highlight'; shapeKind: ShapeKind; onShapeKind: (k: ShapeKind) => void; color: string; onColorChange: (c: string) => void; strokeWidth: number; onStrokeWidthChange: (w: number) => void; fill: string | null; onFillChange: (c: string | null) => void; highlightColor: string; onHighlightColorChange: (c: string) => void; } export declare const ShapeTool: React.FC; export {};