/** * Style presets for image generation. */ export interface StylePreset { name: string; description: string; parameters: { prompt_prefix?: string; prompt_suffix?: string; negative_prompt?: string; style_strength?: number; }; } export declare const stylePresets: Record;