import { PaginationProps } from '..';
/**
* Displays the currently selected item(s) out of the total number of items.
* Ie, "1 / 10" for `itemDisplayType="page"`
* or "1 - 10 / 100" for `itemDisplayType="count"`
*
* @example
*
*/
export declare const PaginationItemDisplay: ({ currentPageIndex, itemCount, itemDisplayType, itemsPerPage, totalPages, }: {
totalPages: number;
} & Pick) => import("react/jsx-runtime").JSX.Element;