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