/// <reference types="react" />
import { ColorInputBaseProps } from "../types";
interface HsvColorInputProps extends ColorInputBaseProps {
    label?: string;
}
export declare const HsvStringColorInput: ({ color, onChange, label }: HsvColorInputProps) => JSX.Element;
export {};
