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