import { Journal } from "./journal.cjs"; import { Fixture, HandlerDefaults } from "./types.cjs"; import * as http$1 from "node:http"; //#region src/images.d.ts declare function handleImages(req: http$1.IncomingMessage, res: http$1.ServerResponse, raw: string, fixtures: Fixture[], journal: Journal, defaults: HandlerDefaults, setCorsHeaders: (res: http$1.ServerResponse) => void, format?: "openai" | "gemini", geminiModel?: string): Promise; /** * Handle POST /v1/images/edits — OpenAI Image Edit API. * * Request uses multipart/form-data. We extract text fields (`prompt`, `model`, * `n`, `size`, `response_format`) and ignore binary fields (`image`, `mask`) * since aimock doesn't process actual image data. * * The response envelope is identical to /v1/images/generations. */ //#endregion export { handleImages }; //# sourceMappingURL=images.d.cts.map