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