/// <reference types="react" />
export interface ICustomizeProps {
    presetColors?: string[];
    onPresetColorsChange?: (colors: string[]) => void;
}
export declare function Customize(props: ICustomizeProps): JSX.Element;
