/**
 * 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.
 */
import type { ValidationErrorItem } from './ValidationErrorItem';
/**
 *
 * @export
 * @interface ValidationErrorModel
 */
export interface ValidationErrorModel {
    /**
     *
     * @type {number}
     * @memberof ValidationErrorModel
     */
    code?: number;
    /**
     *
     * @type {Array<ValidationErrorItem>}
     * @memberof ValidationErrorModel
     */
    detail: Array<ValidationErrorItem>;
}
/**
 * Check if a given object implements the ValidationErrorModel interface.
 */
export declare function instanceOfValidationErrorModel(value: object): boolean;
export declare function ValidationErrorModelFromJSON(json: any): ValidationErrorModel;
export declare function ValidationErrorModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): ValidationErrorModel;
export declare function ValidationErrorModelToJSON(value?: ValidationErrorModel | null): any;
