import { ColorObject } from './color-object.js'; /** * Converts an rgba or hex color string to an RGBA color object. * * This is helpful if you need to work with a color style's numeric color values. * * @returns A color object with the new color values. */ declare function parseColor(rgbOrRgbaOrHex: string): ColorObject; export { parseColor };