import { AfterViewInit, EventEmitter, OnChanges, OnInit } from '@angular/core'; import type { TokensList } from 'marked'; import * as i0 from "@angular/core"; export declare class NgeMarkdownComponent implements OnInit, OnChanges, AfterViewInit { private readonly el; private readonly http; private readonly markdownService; private readonly resourceLoader; private readonly changeDetectorRef; private readonly themes; private readonly contributions; private isDark; /** Link to a markdown file to render. */ file?: string; /** Markdown string to render. */ data?: string; /** Theme to apply to the markdown content. */ theme?: string | null; get klass(): string; /** * An event that emit after each rendering pass * with the list of tokens parsed from the input markdown. */ render: EventEmitter; constructor(); ngOnInit(): void; ngOnChanges(): Promise; ngAfterViewInit(): Promise; private renderFromFile; private renderFromString; private checkTheme; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }