/** * CSS Variable Parser * * Utilities for extracting and parsing CSS variables from the document. * Supports both light and dark mode variables. */ export interface CSSVariable { name: string; value: string; category?: 'primary' | 'semantic' | 'system' | 'other'; } export interface ColorVariable extends CSSVariable { computedValue?: string; swatchColor?: string; } /** * Extract all CSS variables from the document root */ export declare function extractCssVariables(): CSSVariable[]; /** * Get only color-related CSS variables */ export declare function getColorVariables(): ColorVariable[]; /** * Resolve a CSS variable to its computed value */ export declare function resolveCssVar(varName: string): string; //# sourceMappingURL=css-variable-parser.d.ts.map