import React from 'react'; import { PaginationProps } from './types'; export declare const Pagination: ({ totalPages, currentPage: controlledCurrentPage, onPageChange, size, variant, color, showFirstLast, showPrevNext, showEllipsis, siblingCount, boundaryCount, disabled, hideOnSinglePage, useUrlParams, pageParam, sizeParam, preserveParams, ...props }: PaginationProps) => React.JSX.Element;