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