import { BaseInterface as StreamBaseInterface } from './Logger/Stream/BaseInterface'; export declare class Logger { static readonly TYPE_SUCCESS: string; static readonly TYPE_NOTICE: string; static readonly TYPE_WARNING: string; static readonly TYPE_ERROR: string; private streams; constructor(streams: StreamBaseInterface[]); process(message: string, type: string, additionalData: any, group: string): void; processMultiple(records: object[], group: any): void; }