/**
 * Clase base que contiene la información sobre un error producido en la aplicación.
 */
export declare class Error {
    url: string;
    textCA: string;
    textES: string;
    text: string;
    trazaError?: any;
    notificacion?: boolean;
    masInfo?: string;
    multipleText?: string[];
    constructor(url: string, textCA: string, textES: string, text: string, trazaError?: any, notificacion?: boolean, masInfo?: string, multipleText?: string[]);
}
