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