export interface PaginationProps { /** The total number of pages */ total: number; /** Called when the page is changed with the number of the current and the new page */ onChange: (pageNumber: number) => void; /** The current value of the page */ value: number; } declare const Pagination: ({ total, value, onChange }: PaginationProps) => JSX.Element | null; export default Pagination;