import React from "react";
interface ColorPrps {
    color: string;
    variants?: "collection" | "product";
    active?: boolean;
    className?: string;
    handle?: string;
    onClick?: () => void;
    isWhite?: any;
}
declare const ColorSingle: React.FC<ColorPrps>;
export default ColorSingle;
