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