/// import { type SxProps } from '@mui/material/styles'; type ColorPickerProps = { value?: string; onChange: (value: string) => void; onReset?: () => void; sx?: SxProps; disabled?: boolean; options?: { hideReset?: boolean; disableAlpha?: boolean; }; }; declare const ColorPicker: ({ value, onChange, onReset, sx, options, disabled }: ColorPickerProps) => import("react").JSX.Element; export default ColorPicker;