import { OnDestroy } from '@angular/core'; import { StacheNavLink } from '../nav'; import { StacheOmnibarAdapterService, StacheWindowRef } from '../shared'; export declare class StacheTableOfContentsComponent implements OnDestroy { private windowRef; private omnibarService; routes: StacheNavLink[]; private viewTop; private documentBottom; private scrollEventStream; constructor(windowRef: StacheWindowRef, omnibarService: StacheOmnibarAdapterService); ngOnDestroy(): void; updateRoutesOnScroll(routes: any[]): void; updateView(routes: StacheNavLink[]): void; private trackViewTop(); private isCurrent(routes); private scrolledToEndOfPage(); }