/** * Theme Presets * * Barrel exports for all theme presets and utilities */ import type { Theme, ThemeColors } from '../types.js'; export { DEFAULT_SPACING } from './spacing.js'; export { defaultTheme } from './default.js'; export { oceanTheme } from './ocean.js'; export { forestTheme } from './forest.js'; export { sunsetTheme } from './sunset.js'; /** * All available theme presets */ export declare const themePresets: Record; /** * Get a theme by name */ export declare function getTheme(name: string): Theme; /** * Merge custom colors with a base theme */ export declare function mergeTheme(base: Theme, customColors: Partial): Theme; //# sourceMappingURL=index.d.ts.map