import { EventEmitter, OnChanges, OnInit } from '@angular/core'; export declare class AtxTablePaginationComponent implements OnInit, OnChanges { readonly model: any; readonly justifyContent: string; readonly fireChangePage: EventEmitter; pages: number; current: number; numbers: number[]; hasLastPage: boolean; hasFirstPage: boolean; ngOnInit(): void; ngOnChanges(): void; private setValuesPagination(); onChangePage(page: any): void; prevPage(): void; nextPage(): void; }