import { ImageItem } from "@omnia/fx-models";
import { BaseResponse } from "./BaseResponse";
export interface AiImageResponse extends BaseResponse {
    result: ImageDataResult;
}
export interface GeneratedImage extends ImageItem {
    serverImage: ImageDataResult;
}
export interface ImageDataResult {
    caption: string;
    contentUrl: string;
    contentUrlExpiresAt: string;
    createdDateTime: string;
}
