import React from 'react'; import { PaginationProps } from './Pagination.types'; /** * Pagination enables the segmentation of extensive content into smaller portions distributed across various pages. Implement a Pagination component when dealing with an abundance of results to prevent overwhelming users with excessive information on a single page. */ declare function Pagination({ id: idProp, className, itemsPerPage, itemsPerPageOptions, onItemsPerPageOptionChange, currentPage, onCurrentPageOptionChange, numTotalItems, onBackArrowClick, shouldDisableBackArrow, onForwardArrowClick, shouldDisableForwardArrow, darkMode: darkModeProp, 'data-lgid': dataLgId, ...rest }: PaginationProps): React.JSX.Element; declare namespace Pagination { var displayName: string; } export default Pagination; //# sourceMappingURL=Pagination.d.ts.map