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