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; /** * 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); collectFilesContent(_resultFilesContent: Array): void; validate(): void; }