import { ChangeDetectorRef, EventEmitter } from '@angular/core'; import * as i0 from "@angular/core"; export declare class PaginationComponent { private cdr; /** * Text alternative for assistive technologies for previous button * @see https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-label */ ariaLabelNext?: string; /** * Text alternative for assistive technologies for next button * @see https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-label */ ariaLabelPrevious?: string; /** * Total number of pages */ count?: number; /** * Current page */ currentItem: number; /** * Whether pagination should minify */ shouldMinify: boolean; /** * Emits selected item on change */ selectedItem: EventEmitter; constructor(cdr: ChangeDetectorRef); /** * @ignore */ getItems(): number[]; /** * @ignore */ goToNext(): void; /** * @ignore */ goToPrevious(): void; /** * @ignore */ goToItem(item: number): void; /** * @ignore */ isItemVisible(item: number): boolean; /** * @ignore */ showMoreHorizontal(item: number): boolean; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }