import { ElementRef, EventEmitter, OnChanges, OnInit, SimpleChanges } from '@angular/core'; export declare class NecPaginationComponent implements OnInit, OnChanges { private el; curPage: number; totalPages: number; updateFunc: EventEmitter; private maxSize; private min; private max; private range; endEllipsis: boolean; frontEllipsis: boolean; inputPageNum: number; pages: any[]; constructor(el: ElementRef); ngOnInit(): void; ngOnChanges(changes: SimpleChanges): void; go2Page(pageNum: any): void; go2InputPageNum(): void; inputPageNumCheck(): void; update(callFunc: any): void; }