/** * parses a comma, sign and/or whitespace separated string of floats and returns * the single floats in an array */ import type { ContextColors } from '../context/attributestate.js'; import { RGBColor } from './rgbcolor.js'; export declare function parseFloats(str: string): number[]; /** * extends RGBColor by rgba colors as RGBColor is not capable of it * currentcolor: the color to return if colorString === 'currentcolor' */ export declare function parseColor(colorString: string, contextColors: ContextColors | null): RGBColor; //# sourceMappingURL=parsing.d.ts.map