import * as React from 'react';
import { HTMLProps } from 'react';
import { AdaptableApi } from '../../Api/AdaptableApi';
import { BoxProps } from '../Flex';
export type ColorPickerProps = Omit, 'onChange'> & {
api: AdaptableApi;
onChange: (color: string) => void;
value: string;
includeAlpha?: boolean;
} & Omit;
export declare const ColorPicker: React.ForwardRefExoticComponent & React.RefAttributes>;