type ColorBallPickerProps = {
    handleColor: (color?: any | null) => void;
    colorValue: string;
};
export default function ColorBallPicker({ colorValue, handleColor }: ColorBallPickerProps): import("react/jsx-runtime").JSX.Element;
export {};
