import React from 'react'; import { TColor } from './color-dropdown-menu'; type ColorsCustomProps = { color?: string; colors: TColor[]; customColors: TColor[]; updateCustomColor: (color: string) => void; updateColor: (color: string) => void; }; export declare function ColorsCustom({ color, colors, customColors, updateColor, updateCustomColor, }: ColorsCustomProps): React.JSX.Element; export {};