///
export declare type CaColorPickerProps = {
colors: string[] | Record;
onChange: (color: string) => void;
value: string;
};
declare function CaColorPicker({ colors, onChange, value }: CaColorPickerProps): JSX.Element;
export default CaColorPicker;