interface ComponentConfig { type: string; id?: string; props?: Record; children?: ComponentConfig[]; } interface PresetConfig { components: ComponentConfig[]; } export declare function generatePresetCode(preset: PresetConfig, colorSpace?: 'p3-linear' | 'srgb', toneMapping?: 'linear' | 'reinhard' | 'cineon' | 'aces' | 'agx' | 'neutral' | 'hable' | 'unreal'): string; export declare const availableComponents: string[]; export {}; //# sourceMappingURL=generatePresetCode.d.ts.map