import { PaginationProps } from './PaginationTypes'; /** * This component is used to render pagination. * It can be used as a standalone component. * Is also used by the Table component. * It is up to the implementer to provide the correct data, * Eg, `currentPageIndex`, `itemsPerPage`, ect. * * @example * { e?.preventDefault(); setPageIndex(newIndex); }} onItemsPerPageChange={(e, newItemsPerPage) => { e?.preventDefault(); setItemsPerPage(newItemsPerPage); }} * /> * * @see https://design.avaya.com/components/pagination */ export declare const Pagination: { ({ id, currentPageIndex, itemCount, itemsPerPage, itemsPerPageOptions, alwaysShowPagination, itemDisplayType, view, onPageChange, onItemsPerPageChange, backIconButtonText, nextIconButtonText, pagesText, goToPageText, itemsPerPageLabel, centerNode, leftNode, rightNode, }: PaginationProps): import("react/jsx-runtime").JSX.Element; displayName: string; };