export declare const PopoverPicker: ({ color, onChange, }: {
    color: string;
    onChange: (color: string) => void;
}) => import("react/jsx-runtime").JSX.Element;
export declare function ColorPopover({ anchorEl, onChange, onClose, color, }: {
    color: string;
    anchorEl: HTMLElement | null;
    onChange: (val: string) => void;
    onClose: () => void;
}): import("react/jsx-runtime").JSX.Element;
export declare function ColorPicker({ onChange, color, }: {
    color: string;
    onChange: (val: string) => void;
}): import("react/jsx-runtime").JSX.Element;
export default PopoverPicker;
