import { SeverityLevel } from '../enums/severity-level.enum'; /** * ExceptionModel - model */ export declare class ExceptionModel { /** * Unique guid identifying this error */ corelation_id?: string; /** * Error Object(s) */ error?: Error; /** * Specified severity of exception for use with * telemetry filtering in dashboard */ severityLevel?: SeverityLevel | number; /** * Collection of custom properties */ properties?: { [key: string]: any; }; }