/**
 * 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 Author1
 */
export interface Author1 {
    /**
     *
     * @type {string}
     * @memberof Author1
     */
    email?: string | null;
    /**
     *
     * @type {string}
     * @memberof Author1
     */
    name?: string | null;
    /**
     *
     * @type {string}
     * @memberof Author1
     */
    url?: string | null;
}
/**
 * Check if a given object implements the Author1 interface.
 */
export declare function instanceOfAuthor1(value: object): value is Author1;
export declare function Author1FromJSON(json: any): Author1;
export declare function Author1FromJSONTyped(json: any, ignoreDiscriminator: boolean): Author1;
export declare function Author1ToJSON(json: any): Author1;
export declare function Author1ToJSONTyped(value?: Author1 | null, ignoreDiscriminator?: boolean): any;
