import React from "react"; import { Pagination as PrimitivePagination } from "src/primitives/Pagination"; export interface PaginationProps extends Omit, "children"> { /** Total number of items. */ count: number; /** Current page number (1-based). */ pageNo: number; /** Number of items per page. */ pageSize: number; /** Number of sibling pages to show around the current page. */ siblingCount?: number; /** * Callback when a page is selected. When omitted, Pagination falls back * to updating `?page=` in the URL via react-router history (matches v1 * neeto-ui behavior). */ navigate?: (page: number) => void; /** Additional CSS class names. */ className?: string; } declare const Pagination: React.ForwardRefExoticComponent & React.RefAttributes>; export { Pagination };