import { Color } from'../../../types';
/**
* Formats an rgba into a css rgb/a property
* @paramcolor - The color object to format
* @returns Formatted RGB/RGBA string
*/declareconstformatRgb: ({ r, g, b, a }: Color) =>string;
exportdefault formatRgb;