import React from 'react';
import { RGBColor } from '@kepler.gl/types';
export type LayerGroupColorPickerProps = {
    slug: string;
    color: RGBColor;
    onColorChange: (pd: RGBColor) => void;
    extraMarginRight: boolean;
    disabled: boolean;
};
declare function LayerGroupColorPickerFactory(): React.FC<LayerGroupColorPickerProps>;
declare namespace LayerGroupColorPickerFactory {
    var deps: any[];
}
export default LayerGroupColorPickerFactory;
