import React from 'react'; import './ColorSwatch.css'; type versionTypes = 'basic' | 'advanced'; type colorPaletteType = { color: string; title: string; }; type ColorSwatchProps = { title?: string; palette?: colorPaletteType[]; version?: versionTypes; selectedColors?: string[] | colorPaletteType[]; multiple?: boolean; includeDetails?: boolean; handleCancel?: () => void; handleClear?: () => void; handleSelect?: (param: string[] | colorPaletteType[]) => void; handleApply?: (param: string[] | colorPaletteType[]) => void; }; declare const ColorSwatch: ({ title, palette, version, selectedColors, multiple, includeDetails, handleCancel, handleClear, handleSelect, handleApply }: ColorSwatchProps) => React.JSX.Element; export default ColorSwatch;