/**
 * AskNews API
 * AskNews API [![status](https://status.asknews.app/api/badge/2/status?style=for-the-badge)](https://status.asknews.app/status/prod)
 *
 * The version of the OpenAPI document: 0.24.66
 * 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): value is DisplayImageUrl;
export declare function DisplayImageUrlFromJSON(json: any): DisplayImageUrl;
export declare function DisplayImageUrlFromJSONTyped(json: any, ignoreDiscriminator: boolean): DisplayImageUrl;
export declare function DisplayImageUrlToJSON(json: any): DisplayImageUrl;
export declare function DisplayImageUrlToJSONTyped(value?: DisplayImageUrl | null, ignoreDiscriminator?: boolean): any;
