import { PaginationNavigationProps } from '../PaginationTypes'; /** * Used to render the individual links that are displayed in * the Pagination component for the purpose of navigating to * individual "pages". This includes the "left" and "right" * arrows, and the "1", "2", "3", etc. links. * * @example * */ export declare const PaginationNavigation: ({ backIconButtonText, nextIconButtonText, alwaysShowPagination, currentPageIndex, totalPages, onPageChange, paginationRootWidth, }: PaginationNavigationProps) => import("react/jsx-runtime").JSX.Element;