import { OnInit, OnDestroy } from '@angular/core'; import { ActivatedRoute } from '@angular/router'; import { AnchorService } from '../anchor/anchor.service'; export declare class AnchorLinkComponent implements OnInit, OnDestroy { private activatedRoute; private anchorService; fragment: string; isActive: boolean; private sub; constructor(activatedRoute: ActivatedRoute, anchorService: AnchorService); ngOnInit(): void; ngOnDestroy(): void; }