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