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