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