import { OnInit, EventEmitter } from "@angular/core"; import { IdService } from "../shared/services/id.service"; export interface PaginatorEvent { pageNumber: number; } export interface PageSizeEvent { currentPage: number; pageSize: number; } export declare class PaginatorComponent implements OnInit { private idService; totalPages: number; locale: { paginationDisplayLabel: string; paginationPreviousLabel: string; paginationNextLabel: string; paginationFirstLabel: string; paginationLastLabel: string; }; paginationDisplay: number[]; paginationDisplayPreselected: any; activePage: number; id: String; displaySelect: boolean; onPaginatorButtonClicked: EventEmitter; onPageSizeSelectChanged: EventEmitter; currentPage: number; options: any; model: number; private _activePage; constructor(idService: IdService); readonly pageDisplay: any[]; displayOptions(): { label: string; value: string; selected: boolean; }[]; ngOnInit(): void; $_Paginator_onFirstPageButtonClicked(): void; $_Paginator_onPreviousPageButtonClicked(): void; $_Paginator_onNextPageButtonClicked(): void; $_Paginator_onPageNumberButtonClicked(val: any): void; $_Paginator_onLastPageButtonClicked(): void; $_Paginator_onPageSizeSelectChange(e: any): void; }