/** * Theme system exports */ export { darkTheme } from './dark.js'; export { modernTheme } from './modern.js'; export * from './types.js'; export { applyThemeToCSS, createTheme, getThemeFromCSS, mergeTheme, } from './utils.js'; export declare const themes: { readonly modern: import("./types.js").Theme; readonly dark: import("./types.js").Theme; }; export type ThemeName = keyof typeof themes; //# sourceMappingURL=index.d.ts.map