import React from 'react'; export interface ColorSwatchProps { color: string; current?: boolean; onClick?: (color: string, e: React.MouseEvent) => void; removeColor?: (e: React.MouseEvent) => void; storageKey?: string; } declare const ColorSwatch: ({ color, current, onClick, removeColor, }: ColorSwatchProps) => React.JSX.Element; export default ColorSwatch;