export type FalFluxOutpaintDimensions = { width: number; height: number; }; export type FalFluxOutpaintCost = { cost: number; billableMegapixels: number; pricedImages: number; }; export declare const FAL_FLUX_2_PRO_OUTPAINT_BASE_COST = 0.03; export declare const FAL_FLUX_2_PRO_OUTPAINT_EXTRA_MEGAPIXEL_COST = 0.015; export declare function calculateFalFlux2ProOutpaintImageCost(dimensions: FalFluxOutpaintDimensions): { cost: number; billableMegapixels: number; }; export declare function calculateFalFlux2ProOutpaintCostFromImages(images: unknown): FalFluxOutpaintCost | null; //# sourceMappingURL=fal_flux_outpaint_pricing.d.ts.map