import * as React from 'react'; interface IProps { isHideColor?: boolean; info: { size: number; color: string; }; onChange: ({ size, color }: { size?: number; color?: string; }) => void; } declare const Stroke: React.FC; export default Stroke;