import { ElementRef, OnDestroy, OnInit } from '@angular/core';
import { RootService } from '../../infrastructure/component/root.service';
export declare class MarkupDirective implements OnInit, OnDestroy {
    private root;
    private element;
    name: string;
    constructor(root: RootService, element: ElementRef);
    ngOnInit(): void;
    ngOnDestroy(): void;
}
