import { type Localization, type Option, type PageSize } from "./PaginationMenu.types"; export declare const PAGE_SIZE_OPTIONS: { label: string; value: PageSize; }[]; export declare const getPageNumberOptions: (pageCount: number) => Option[]; /** * * @returns When the pageSize and resultCount params are present, * this function returns a text indicating the range of elements that are being displayed, * otherwise it returns a text indicating the current page and the page count. * @example 1-50 of 100 * */ export declare const getSummaryText: (pageCount: number, currentPageNumber: number, localization: Localization, pageSize?: number, resultCount?: number) => string;