interface Props { onChange: (color: string) => void; activeColor?: string; } export declare const ColorSelector: ({ onChange, activeColor }: Props) => import("react/jsx-runtime").JSX.Element; export {};