import React from "react"; export interface StyleModel { id: string; name: string; description: string; previewUrl: string; strength: number; category: "artistic" | "photographic" | "abstract" | "vintage" | "modern"; } export interface GlassStyleTransferProps { sourceImage?: string; styleModels?: StyleModel[]; selectedStyle?: string; transferStrength?: number; compact?: boolean; showHeader?: boolean; showActions?: boolean; realTimePreview?: boolean; showProgressIndicator?: boolean; showStyleLibrary?: boolean; showAdvancedControls?: boolean; preserveColors?: boolean; enhanceDetails?: boolean; blendMode?: "normal" | "multiply" | "screen" | "overlay" | "soft-light"; resolution?: "low" | "medium" | "high" | "ultra"; onStyleSelect?: (styleId: string) => void; onTransferComplete?: (result: string) => void; onProgressUpdate?: (progress: number) => void; className?: string; } export declare const GlassStyleTransfer: React.ForwardRefExoticComponent>; //# sourceMappingURL=GlassStyleTransfer.d.ts.map