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