import { AfterViewInit, EventEmitter, OnInit } from '@angular/core'; import * as i0 from "@angular/core"; /** * * Componente padrão, simplificado, de paginação do Apolo. */ export declare class SimplePaginationComponent implements OnInit, AfterViewInit { /** * * Página atual. */ page: number; /** * * Total de elementos. */ collectionSize: number; /** * * Tamanho da página */ pageSize: number; /** * * Evento da troca de página. */ pgEvent: EventEmitter; constructor(); ngOnInit(): void; ngAfterViewInit(): void; getAllPages(): number; jumpToPg(value: number): void; evtJumpToPg(event: Event): void; previousPg(): void; nextPg(): void; getFirst(): number; getLast(): number; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }