import { RgbColor } from './rgb-color.js';
/**
 * Parses a CSS color string and returns its RGBA representation.
 * Supports hex (#rgb, #rrggbb), rgb(), rgba(), CSS variables (var(--…)),
 * and common named colors.
 * @param color The color string to parse
 * @returns The parsed RGBA values
 */
export declare const getRgbFromColorString: (color: string) => RgbColor;
//# sourceMappingURL=get-rgb-from-color-string.d.ts.map