import * as React from "react"; import { HSVAFormat, HSLAFormat } from "../../types"; declare type ColorBoxProps = { spectrumFormat: HSVAFormat | HSLAFormat; hue: number; saturation: number; value?: number; lightness?: number; width: number; height: number; className?: string; handleClasses?: string; }; declare function Spectrum(props: ColorBoxProps): JSX.Element; declare const _default: React.MemoExoticComponent; export default _default;