/**
 * 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 AbcAPIErrorModel1
 */
export interface AbcAPIErrorModel1 {
    /**
     *
     * @type {number}
     * @memberof AbcAPIErrorModel1
     */
    code: number;
    /**
     *
     * @type {string}
     * @memberof AbcAPIErrorModel1
     */
    detail: string;
}
/**
 * Check if a given object implements the AbcAPIErrorModel1 interface.
 */
export declare function instanceOfAbcAPIErrorModel1(value: object): boolean;
export declare function AbcAPIErrorModel1FromJSON(json: any): AbcAPIErrorModel1;
export declare function AbcAPIErrorModel1FromJSONTyped(json: any, ignoreDiscriminator: boolean): AbcAPIErrorModel1;
export declare function AbcAPIErrorModel1ToJSON(value?: AbcAPIErrorModel1 | null): any;
