import { type PaginationHookProps } from './pagination.types.js'; export declare const usePagination: ({ defaultCurrent, totalPages, infinite }: PaginationHookProps) => { currentPage: number; setCurrentPage: import("react").Dispatch>; next: () => void; previous: () => void; totalPages: number; };