import { JSX } from 'react'; export interface PaginationProps { /** * CSS classes */ className?: string; /** * You might want to set this as `true` on page change when new page is loading */ isDisabled?: boolean; /** * the number of the current/active page */ currentPage: number; /** * Callback invoked when a different page button is clicked */ onChangePageRequest: (pageNumber: number) => void; /** * Total number of pages */ pageCount: number; } declare function Pagination({ className, currentPage, isDisabled, onChangePageRequest, pageCount, ...rest }: PaginationProps): JSX.Element | null; declare namespace Pagination { var displayName: string; } export { Pagination };