/** * Flux Provider (fal.ai) — Photorealistic image generation * * Uses the fal.ai queue API for Flux Pro v1.1. * Flux excels at: photorealistic images, product shots, landscapes, portraits. * * Pricing (2026): ~$0.04 per image. * Uses a queue model: submit job → poll for result. * * https://fal.ai/models/fal-ai/flux-pro */ import type { ImageGenerateResult, ImageSize } from '../types.js'; export declare function generateFlux(apiKey: string, prompt: string, options?: { size?: ImageSize; }): Promise; //# sourceMappingURL=flux.d.ts.map