/// import { Project } from "@uimix/render"; export declare class CSSGenerator { constructor(project: Project, imageURLs: Map); project: Project; images: Map; generateCSS(): CSSRule[]; } interface CSSRule { idPath: string[]; style: React.CSSProperties; variant?: string; } export declare function cssRuleToString(project: Project, rule: CSSRule): string; export {};