import { OnInit } from '@angular/core'; import { CoreServices, FooterButtonConfig, NodeConfig } from '4sure-wilo'; import { Observable, Subscription } from 'rxjs'; export declare class AppFooterComponent implements OnInit { private svc; activeNode$: Observable; compInstances: any[]; compInstancessub: Subscription | null; maxSize: number; constructor(svc: CoreServices); ngOnInit(): void; setCurrentPage(currentPage: number): void; getNavs(node: NodeConfig): FooterButtonConfig[]; }