import type { Dispatch, HTMLAttributes, SetStateAction } from 'react'; type ItemsPerPage = 25 | 50 | 100; export type PaginationProps = { count: number; current?: number; divider?: boolean; itemsPerPage?: ItemsPerPage; itemsPerPageLabel?: (context: { count: number; current: number; itemsPerPage: ItemsPerPage; }) => string; showingResultsLabel?: (context: { count: number; current: number; itemsPerPage: ItemsPerPage; }) => string; onSetCurrent?: Dispatch>; onSetItemsPerPage?: Dispatch>; } & HTMLAttributes; declare const Pagination: ({ count, current, itemsPerPage, itemsPerPageLabel, showingResultsLabel, onSetItemsPerPage, onSetCurrent, divider, ...props }: PaginationProps) => import("react/jsx-runtime").JSX.Element; export default Pagination; //# sourceMappingURL=Pagination.d.ts.map