import { PageNavigationItemsListType } from '../pagination/pagination.types'; /** * Generates an array of consecutive numbers starting from a given value * @param from - The starting number * @param count - How many numbers to generate * @returns Array of numbers from `from` to `from + count - 1` * @example range(5, 3) => [5, 6, 7] */ export declare const range: (from: number, count: number) => number[]; /** * This function generates the pagination navigation links and separators. * The output is an array of numbers and separators * Eg., [1, 2, 3, 4, 5, 6, 7, '...', 10] * @param currentPageIndex index of the current page * @param totalPages total number of pages */ export declare const getNavItems: (currentPageIndex: number, totalPages: number) => PageNavigationItemsListType;