import type { Request, Response } from 'express'; import type { HandlerContext } from './types.js'; export declare function handleImageGenerations(req: Request, res: Response, ctx: HandlerContext): Promise; export declare function handleImageEdits(req: Request, res: Response, ctx: HandlerContext): Promise; declare const _default: { handleImageGenerations: typeof handleImageGenerations; handleImageEdits: typeof handleImageEdits; }; export default _default;