import React from 'react'; import { NavigationProps } from './Navigation.types'; /** * Navigation is a component that displays the current page and the total number of pages. * It also displays the previous and next page buttons. */ declare function Navigation({ 'data-lgid': dataLgId, onCurrentPageOptionChange, currentPage, numTotalItems, itemsPerPage, shouldDisableBackArrow, shouldDisableForwardArrow, onBackArrowClick, onForwardArrowClick, className, }: NavigationProps): React.JSX.Element; declare namespace Navigation { var displayName: string; } export default Navigation; //# sourceMappingURL=Navigation.d.ts.map