import { AttributeInfo } from '../internal/attributeInfo';
import { ModelInterface } from './modelInterface';
export declare const importsMapApiError: {};
/**
 * Api error.
 */
export declare class ApiError implements ModelInterface {
    /**
     * Attribute type map
     */
    static attributeTypeMap: Array<AttributeInfo>;
    /**
     * Returns attribute type map
     */
    static getAttributeTypeMap(): AttributeInfo[];
    /**
     * Gets or sets the API error code.
     */
    code: string;
    /**
     * Gets or sets the server DateTime.
     */
    dateTime: Date;
    /**
     * Gets or sets the error description.
     */
    description: string;
    /**
     * Gets or sets the inner error.
     */
    innerError: ApiError;
    /**
     * Gets or sets the error message.
     */
    message: string;
    constructor(init?: Partial<ApiError>);
    collectFilesContent(_resultFilesContent: Array<any>): void;
    validate(): void;
}
