import { OnDestroy } from '@angular/core'; import { DomSanitizer, SafeUrl } from '@angular/platform-browser'; export declare class PaginationService implements OnDestroy { private sanitizer; href: string; hrefReplaceReg: string | RegExp; currentPage: number; focusPage: any; totalPage: number; private current; private focused; private total; private unsubscribe$; current$: import("rxjs/internal/Observable").Observable; focused$: import("rxjs/internal/Observable").Observable; total$: import("rxjs/internal/Observable").Observable; constructor(sanitizer: DomSanitizer); initConfig(href: any, hrefReplaceReg: any, totalPage: any): void; isClickable(index: any): boolean; isFirstOrLastNow(): boolean; isCurrent(index: any): boolean; isCurrentFirst(): boolean; isCurrentLast(): boolean; select(index: any): void; selectNext(): void; selectPrevious(): void; focus(index: any): void; updateTotal(total: any): void; getHref: (index: any) => String | SafeUrl; focusInList: (list: any, offset: any) => void; selectfocus: () => void; ngOnDestroy(): void; }