import { PaginationNavigationProps } from '../PaginationTypes'; /** * This component is used by the `PaginationNavigation` component and the * helper method `buildNavItems` to render a single `
  • ` element that * links to a "page" of pagination data. * * @example * */ export declare const NavListItemButton: ({ isCurrentPage, onPageChange, pageToNavigateTo, }: { pageToNavigateTo: number; isCurrentPage?: boolean; } & Pick) => import("react/jsx-runtime").JSX.Element;