import { IError } from "../common/index";
export declare class LogHelper implements IError {
    type: string;
    message: string;
    private _info;
    status: boolean;
    constructor(type: string, info?: any);
    throw(): void;
    log(msg: any): void;
    logError(): void;
    logWarning(): void;
    get(): IError;
    private getMsg;
}
