import { EventEmitter, OnChanges, OnInit, SimpleChanges } from '@angular/core'; import { IPagination } from './luci-pagination.model'; export declare class LuciPaginationComponent implements OnInit, OnChanges { pageInfo: IPagination; updatePage: EventEmitter; totalItems: number; pageSize: number; position: string; reset: boolean; constructor(); ngOnInit(): void; ngOnChanges(changes: SimpleChanges): void; updatePageInfo(): void; setPage(pageNumber: number): void; }