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