import type { AriaLabelingProps, CommonProps } from '../types.js'; export interface BasePaginationProps extends CommonProps, AriaLabelingProps { /** The current page number. */ currentPage: number; /** The total number of pages. */ pageCount: number; /** The `id` of the paginated element. You must provide this prop when pagination controls a subsection of the page (for example, a data table). */ paginatedElementId?: string; } //# sourceMappingURL=base-pagination.d.ts.map