import React from 'react'; import { RgbaColor } from 'react-colorful'; type HexaFieldsProps = { value: RgbaColor; onChange: (newValue: RgbaColor) => void; disableAlpha?: boolean; }; declare const HexaFields: ({ value, onChange, disableAlpha }: HexaFieldsProps) => React.JSX.Element; export default HexaFields;