import "./globals.scss";
import React from "react";
interface ColorPickerProps {
    defaultValue: string;
    onChange: (color: string) => void;
    className?: string;
    labelFor?: string;
}
declare const Colorify: React.FC<ColorPickerProps>;
export default Colorify;
