import React from "react";
interface Color {
    colors: any;
    color: string;
    setDetail: any;
    search?: boolean;
    handle?: string;
    collectionHandle?: string;
}
declare const Color: React.FC<Color>;
export default Color;
