import { IError } from "@/common"; export declare class LogHelper implements IError { type: string; message: string; private info_; status: boolean; log(msg: any): void; constructor(type: string, info?: any); throw(): void; logError(): void; get(): IError; warn(): void; private getMsg_; }