import { ERROR_TYPE } from "../enums"; import { IError } from "../interfaces"; export declare class ErrorHelper implements IError { type: ERROR_TYPE; message: string; constructor(type: ERROR_TYPE, info?: any); throw(): void; get(): IError; private getMsg_; }