import React from 'react'; import { Color, ColorObject, ColorCombination, Theme } from '../../types'; export type ColorPickerProps = { theme?: Partial; color?: Color; presets?: Color[]; onChange?: (color: ColorObject) => void; hideAlpha?: boolean; hideInputs?: boolean; combinations?: ColorCombination | ColorCombination[]; className?: string; }; declare const ColorPicker: ({ theme, color, presets, onChange, hideAlpha, hideInputs, className, combinations }: ColorPickerProps) => React.JSX.Element; declare const _default: typeof ColorPicker; export default _default;