/** * Theme utilities */ import type { DeepPartial, Theme, ThemeOptions } from './types.js'; /** * Merge theme with overrides */ export declare function mergeTheme(base: Theme, overrides?: DeepPartial): Theme; /** * Create custom theme */ export declare function createTheme(options: ThemeOptions): Theme; /** * Apply theme to CSS variables */ export declare function applyThemeToCSS(theme: Theme, root?: HTMLElement): void; /** * Get theme from CSS variables */ export declare function getThemeFromCSS(root?: HTMLElement): Partial; //# sourceMappingURL=utils.d.ts.map