/**
 * AskNews API
 * AskNews API
 *
 * The version of the OpenAPI document: 0.18.6
 * Contact: contact@emergentmethods.ai
 *
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */
/**
 *
 * @export
 * @interface DisplayImageUrl
 */
export interface DisplayImageUrl {
    /**
     *
     * @type {string}
     * @memberof DisplayImageUrl
     */
    sourceId: string;
    /**
     *
     * @type {string}
     * @memberof DisplayImageUrl
     */
    imageUrl: string;
}
/**
 * Check if a given object implements the DisplayImageUrl interface.
 */
export declare function instanceOfDisplayImageUrl(value: object): boolean;
export declare function DisplayImageUrlFromJSON(json: any): DisplayImageUrl;
export declare function DisplayImageUrlFromJSONTyped(json: any, ignoreDiscriminator: boolean): DisplayImageUrl;
export declare function DisplayImageUrlToJSON(value?: DisplayImageUrl | null): any;
