import React from 'react'; import { LayerProps } from '../../layout'; export interface ColorPickerProps extends Partial> { colors: string[]; onColorChange: (color: string) => void; defaultValue?: string; value?: string; } declare const ColorPicker: React.ForwardRefExoticComponent & React.RefAttributes>; export { ColorPicker };