export declare class LoggerService {
    private readonly tags;
    constructor(tags: string[]);
    log(message: string, tags?: string[], color?: string): void;
    error(message: string): void;
    private isShown(tags);
}
