///
import { ColorPickerOverrides } from './types';
declare type ContentProps = {
color?: string;
overrides?: ColorPickerOverrides;
onChange: (color?: string) => void;
};
export declare const ColorPalette: import("react").NamedExoticComponent;
export {};