import { ElementRef, OnChanges, OnInit, Renderer2, SimpleChanges } from '@angular/core';
import * as i0 from "@angular/core";
/**
 *
 * @smeDoc {@label Markdown @id sme-markdown-directive}
 *
 * @overview
 * @file {@filepath ./examples/markdown-overview.md}
 *
 * @example {@label Basic Usage @id basic-usage}
 * @file {@filename component.html @filepath ./examples/basic-usage.component.html}
 * @file {@filename component.ts @filepath ./examples/basic-usage.component.ts}
 *
 */
export declare class MarkdownDirective implements OnInit, OnChanges {
    private host;
    private renderer;
    smeMarkdown: string;
    get content(): string;
    private renderedContent;
    constructor(host: ElementRef, renderer: Renderer2);
    ngOnInit(): void;
    ngOnChanges(changes: SimpleChanges): void;
    render(): void;
    static ɵfac: i0.ɵɵFactoryDeclaration<MarkdownDirective, never>;
    static ɵdir: i0.ɵɵDirectiveDeclaration<MarkdownDirective, "[smeMarkdown]", never, { "smeMarkdown": "smeMarkdown"; }, {}, never, never, false, never>;
}
