import { RgbaColor } from '../types/color';

declare function rgba(
  firstValue: RgbaColor | number | string,
  secondValue?: number,
  thirdValue?: number,
  fourthValue?: number,
): string;

export default rgba;
