import * as react from 'react'; import { HTMLAttributes } from 'react'; interface PaginationProps extends Omit, 'onChange'> { /** Current 1-indexed page */ page: number; /** Total number of pages */ pageCount: number; /** Called with the next page number when the user navigates */ onChange: (page: number) => void; /** Number of sibling pages to show on either side of the current page */ siblingCount?: number; } declare const Pagination: react.ForwardRefExoticComponent>; export { Pagination, type PaginationProps };