/**
 * 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 { ValidationError } from './ValidationError';
/**
 *
 * @export
 * @interface HTTPValidationError
 */
export interface HTTPValidationError {
    /**
     *
     * @type {Array<ValidationError>}
     * @memberof HTTPValidationError
     */
    detail?: Array<ValidationError>;
}
/**
 * Check if a given object implements the HTTPValidationError interface.
 */
export declare function instanceOfHTTPValidationError(value: object): boolean;
export declare function HTTPValidationErrorFromJSON(json: any): HTTPValidationError;
export declare function HTTPValidationErrorFromJSONTyped(json: any, ignoreDiscriminator: boolean): HTTPValidationError;
export declare function HTTPValidationErrorToJSON(value?: HTTPValidationError | null): any;
