import type { SEPARATOR } from "./Pagination"; interface PaginationItemsToDisplay { totalPages: number; currentPage: number; maxVisiblePages?: number; } type PagesToDisplay = (number | typeof SEPARATOR)[]; export declare function getPageItemsToDisplay({ totalPages, currentPage, maxVisiblePages, }: PaginationItemsToDisplay): PagesToDisplay; export {};