import { ElementRef, OnDestroy, OnInit } from '@angular/core'; import { TocContainerDirective } from './toc-container.directive'; export declare class TocContentDirective implements OnInit, OnDestroy { private containerDirective; active: boolean; auiTocContent: string; nativeElement: HTMLElement; constructor(elemRef: ElementRef, containerDirective: TocContainerDirective); ngOnInit(): void; ngOnDestroy(): void; }