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