import { ElementRef, OnDestroy, OnInit, TemplateRef } from '@angular/core'; import { NzAnchorComponent } from './nz-anchor.component'; export declare class NzAnchorLinkComponent implements OnInit, OnDestroy { el: ElementRef; private anchorComp; nzHref: string; titleStr: string; titleTpl: TemplateRef; nzTitle: string | TemplateRef; nzTemplate: TemplateRef; active: boolean; constructor(el: ElementRef, anchorComp: NzAnchorComponent); ngOnInit(): void; goToClick(e: Event): void; ngOnDestroy(): void; }