import { type PaginationProps } from './Pagination.types'; /** * The general-purpose Pagination component. * This component switches the looks depends on the props: showItemsCount, showPagePicker and showItemsPerPage. */ export declare function Pagination({ 'aria-label': ariaLabel, currentPageNumber, totalItems, itemsPerPage, unitLabel, prevButtonProps, pageSelectBoxProps, nextButtonProps, itemsPerPageProps, itemsPerPageSelectBoxProps, showItemsCount, showPagePicker, showItemsPerPage, alignment, pageSuffixLabel, onPageChange, ...props }: PaginationProps): import("react/jsx-runtime").JSX.Element;