import type { Image } from './Image';
export interface ProcessImageResponse {
    created: number;
    credits: number;
    image: Image;
}
export declare function instanceOfProcessImageResponse(value: object): value is ProcessImageResponse;
export declare function ProcessImageResponseFromJSON(json: any): ProcessImageResponse;
export declare function ProcessImageResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ProcessImageResponse;
export declare function ProcessImageResponseToJSON(json: any): ProcessImageResponse;
export declare function ProcessImageResponseToJSONTyped(value?: ProcessImageResponse | null, ignoreDiscriminator?: boolean): any;
