import { ExceptionItem } from './types'; export declare const ErrorCodeUtils: { getI18NDesc(codeMap: Map, code: string, locale?: string | undefined): string; }; export declare class ArtusStdError extends Error { name: string; private _code; private _codeMap; constructor(code: string, codeMap: Map); get code(): string; get desc(): string; get detailUrl(): string | undefined; }