import type { NavigationProps } from '../types.js'; import type { BasePaginationProps } from './base-pagination.js'; export interface PaginationProps extends Omit, Omit { /** The current page number (controlled). Should be between `1` and `pageCount`. */ currentPage?: number; /** The default page number (uncontrolled). Should be between `1` and `pageCount`. */ defaultPage?: number; /** A callback function that is called when the page number changes. */ onPageChange?: (page: number) => void; /** A function that returns a URL for a given page number. */ href?: (page: number) => string; } /** * Allows navigating across multiple pages of related content. * * See [pagination usage guidelines](https://ui.cimpress.io/components/pagination/). */ declare const _Pagination: (props: PaginationProps & import("react").RefAttributes & import("../../with-style-props.js").StyleProps) => import("react").JSX.Element | null; export { _Pagination as Pagination }; //# sourceMappingURL=pagination.d.ts.map