import { default as React } from 'react'; interface DrawToolProps { color: string; strokeWidth: number; onColorChange: (color: string) => void; onStrokeWidthChange: (width: number) => void; } export declare const DrawTool: React.FC; export {};