import { AttributeInfo } from '../internal/attributeInfo';
import { ModelInterface } from './modelInterface';
import { ErrorDetails } from './errorDetails';
export declare const importsMapError: {
    ErrorDetails: typeof ErrorDetails;
};
/**
 * Error.
 */
export declare class Error implements ModelInterface {
    /**
     * Attribute type map
     */
    static attributeTypeMap: Array<AttributeInfo>;
    /**
     * Returns attribute type map
     */
    static getAttributeTypeMap(): AttributeInfo[];
    /**
     * Gets or sets Code.
     */
    code: string;
    /**
     * Gets or sets Description.
     */
    description: string;
    /**
     * Gets or sets InnerError.
     */
    innerError: ErrorDetails;
    /**
     * Gets or sets Message.
     */
    message: string;
    constructor(init?: Partial<Error>);
    collectFilesContent(_resultFilesContent: Array<any>): void;
    validate(): void;
}
