import { OnInit, EventEmitter, OnChanges, SimpleChanges } from '@angular/core'; import { IPagination } from './pagination.model'; export declare class TablePaginationComponent implements OnInit, OnChanges { currentPagination: IPagination; paginationChange: EventEmitter; pages: any[]; currentPageRound: any[]; constructor(); ngOnInit(): void; ngOnChanges(changes: SimpleChanges): void; setPage(page: number): void; nextPage(): void; previousPage(): void; changePageSize(newPageSizeValue: number): void; private setPageRound; }