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