import { LitElement } from 'lit'; export declare class PaginationElement extends LitElement { static styles: import('lit').CSSResult; itemsLabel: string; count: number; page: number; pageSize: number; pageSizeLabel: string; pageSizes: number[]; render(): import('lit').TemplateResult<1>; /** * Changes the page size and sets the page index so that previously visible elements remain visible. * * For example, if the page size is 10 and on the second page (items indexed 10-19) then * switching so that the page size is 5 will set the third page as the current page so * that the 10th item will still be displayed. */ private handlePageSizeChange; private handlePageChange; private isPreviousDisabled; private isNextDisabled; private toPageRangeLabel; } declare global { interface HTMLElementTagNameMap { 'cds-pagination': PaginationElement; } }