/// import { usePagination } from './usePagination'; import { UsePaginationProps } from './types'; declare type PaginationProps = { children: (arg0: ReturnType) => JSX.Element; } & UsePaginationProps; export { usePagination }; export declare const Pagination: ({ children, totalPage, currentPage, middlePagesSiblingCount, edgePageCount, }: PaginationProps) => JSX.Element;