/**
 * 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 Assets1
 */
export interface Assets1 {
    /**
     *
     * @type {Array<string>}
     * @memberof Assets1
     */
    images?: Array<string> | null;
    /**
     *
     * @type {Array<string>}
     * @memberof Assets1
     */
    videos?: Array<string> | null;
}
/**
 * Check if a given object implements the Assets1 interface.
 */
export declare function instanceOfAssets1(value: object): value is Assets1;
export declare function Assets1FromJSON(json: any): Assets1;
export declare function Assets1FromJSONTyped(json: any, ignoreDiscriminator: boolean): Assets1;
export declare function Assets1ToJSON(json: any): Assets1;
export declare function Assets1ToJSONTyped(value?: Assets1 | null, ignoreDiscriminator?: boolean): any;
