/** * SVG color analysis utilities */ import { SVGColor } from '../types'; /** * Extracts all colors used in an SVG */ export declare function extractColors(svgContent: Element | string): SVGColor[];