import { HttpError } from '@mvx/mvc';
/**
 * error.
 *
 * @export
 * @class OIDCError
 * @extends {HttpError}
 */
export declare class AuthenticationError extends HttpError {
    error_description?: string | string[];
    error: string;
    expose: boolean;
    constructor(status: number, message: string | string[], error_description?: string | string[]);
    static ρAnn(): any;
}
