/** * The **Theme Exporter** — serializes a theme to JSON, CSS custom properties, * TypeScript, or JavaScript, so applications can persist/share generated themes. * * @packageDocumentation */ import type { GeneratedTheme, ThemeExportFormat } from '../../types/theme-ai.types'; /** Serializes {@link GeneratedTheme}s to the supported export formats. */ export declare class ThemeExporter { /** Serialize a theme to the requested format (defaults to JSON). */ export(theme: GeneratedTheme, format?: ThemeExportFormat): string; private toCss; private toTs; private toJs; } //# sourceMappingURL=theme-exporter.d.ts.map