import type { PaginationProps } from './types'; /** * Кнопки навигации по страницам. * @param props Свойства. * @return Элемент. */ export declare function Pagination({ rootRef, current: currentProp, total: totalProp, onPageChange, getItems, renderItem, className, ...restProps }: PaginationProps): import("react").JSX.Element;