import type { SemanticConfigOptions } from '../get-colors.js'; import type { ThemeKey } from '../types/tokens.js'; /** * Генерация CSS-стилей [selector] { --variables: ... } */ export declare function generateCSSStyles(themeTokens: any, params: SemanticConfigOptions & { theme: ThemeKey; }): string; export declare function flattenToCssVars(obj: any, prefix: string): string; export declare function flattenHybridCase(obj: any, prefix?: string): Record;