import type { Color } from './types'; declare function RGBToString(rgb: Color): string; declare function stringToRGBA(string: string): Color | null; declare const _default: { RGBToString: typeof RGBToString; stringToRGBA: typeof stringToRGBA; }; export = _default;