/**
 * 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 Assets
 */
export interface Assets {
    /**
     *
     * @type {Array<string>}
     * @memberof Assets
     */
    images?: Array<string> | null;
    /**
     *
     * @type {Array<string>}
     * @memberof Assets
     */
    videos?: Array<string> | null;
}
/**
 * Check if a given object implements the Assets interface.
 */
export declare function instanceOfAssets(value: object): value is Assets;
export declare function AssetsFromJSON(json: any): Assets;
export declare function AssetsFromJSONTyped(json: any, ignoreDiscriminator: boolean): Assets;
export declare function AssetsToJSON(json: any): Assets;
export declare function AssetsToJSONTyped(value?: Assets | null, ignoreDiscriminator?: boolean): any;
