import * as React from 'react';
import { BackgroundProps } from '../../types/component';
import { RGBColor } from '@react-page/editor';
export interface ColorComponentProps {
    onChangeBackgroundColorPreview: (color?: RGBColor) => void;
    backgroundColorPreview: RGBColor;
    ensureModeOn: () => void;
}
declare class ColorComponent extends React.Component<BackgroundProps & ColorComponentProps> {
    handleChangePickerBackgroundColor: (e: RGBColor) => void;
    handleChangePickerBackgroundColorComplete: (e: RGBColor) => void;
    render(): React.JSX.Element;
}
export default ColorComponent;
