import { ElementRef, OnChanges, SimpleChanges, EventEmitter } from '@angular/core'; export declare class SyntaxHighlighterComponent implements OnChanges { private elementRef; private defaultLanguage; private language; showCloseButton: boolean; title: string; content: string; onClose: EventEmitter<{}>; readonly burshClass: string; constructor(elementRef: ElementRef, language: string, showClose: boolean); ngOnChanges(changes: SimpleChanges): void; close(): void; }