import React from "react";
declare type Props = {
    onPick: (color: string) => void;
};
declare const ColorPicker: React.FC<Props>;
export default ColorPicker;
