import { ILogger } from '../model/'; export declare abstract class BaseLogger implements ILogger { private readonly logger; private readonly prefix; protected constructor(logger: ILogger, prefix: string); warn(str: string): void; debug(str: string): void; error(str: string): void; }