import type { GenerateImageParams, ImageGenResult, ImageGenSettings } from './types.js'; export type GenerateImageOptions = { cwd: string; settings: ImageGenSettings; fetchImpl?: typeof fetch; /** Cancellation signal — propagated to every fetch and the DashScope poll loop. */ signal?: AbortSignal; }; export declare function generateImage(params: GenerateImageParams, options: GenerateImageOptions): Promise; //# sourceMappingURL=generate.d.ts.map