import { EventEmitter, QueryList, ElementRef, OnChanges } from '@angular/core'; export declare class DopePagination implements OnChanges { type: 'bar' | 'dot'; paginationLimit: number; startPage: number; buttonStyle: any; buttonClicked: EventEmitter<{}>; pagniationButtons: QueryList; private paginationItems; private previousIndex; private _buttonStyle; ngOnInit(): void; ngOnChanges(changes: any): void; ngAfterViewInit(): void; private paginate(buttonIndex); private setBarStyle(); private setDotStyle(); private setActive(button); private setInactive(button); }