import type { ViewImageContent } from "../view-image/output.ts"; export interface ImagegenOutput { path: string; latest_path?: string | undefined; images?: Array<{ path?: string | undefined; absolute_path?: string | undefined; latest_path?: string | undefined; latest_absolute_path?: string | undefined; }> | undefined; background?: string | undefined; quality?: string | undefined; size?: string | undefined; } export declare function imagegenOutputFromJson(output: string): ImagegenOutput | undefined; export declare function imageContentsFromImagegenOutput(output: ImagegenOutput): ViewImageContent[]; export declare function formatImagegenOutput(output: ImagegenOutput): string;