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