import { ILoggerService, ILogTableSettings } from "../interfaces"; export declare class LoggerService implements ILoggerService { private _loggerName; constructor(loggerName?: string); info(msg: any): void; debug(msg: any): void; warn(msg: any): void; error(msg: any): void; drawTable(list: any[], setting: ILogTableSettings): string; private use; }