/** * JSON to SCSS Generator * Converts JSON back to SCSS format */ import type { SCSSJson, GenerateOptions } from './types.js'; export declare class SCSSGenerator { private options; constructor(options?: GenerateOptions); /** * Generate SCSS from JSON */ generate(json: SCSSJson): string; /** * Generate a selector block */ private generateSelector; } /** * Convenience function to generate SCSS from JSON */ export declare function toSCSS(json: SCSSJson, options?: GenerateOptions): string; //# sourceMappingURL=generator.d.ts.map