import { PaginationBehaviourRenderProps } from '@jetshop/ui/Pagination/PaginationBehaviour'; import * as React from 'react'; export declare const PaginationWrapper: import("linaria/lib/StyledMeta").StyledMeta & React.FunctionComponent & React.HTMLAttributes & { as?: React.ElementType; }>; declare function usePagination({ prevPage, nextPage, currentPage, isFirstPage, isLastPage }: Partial): { prevHref: string; nextHref: string; goToHref: (page: number) => string; prevOnClick: (e: React.MouseEvent) => void; nextOnClick: (e: React.MouseEvent) => void; isPrevDisabled: boolean; isNextDisabled: boolean; }; export default usePagination;