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