import * as React from 'react'; import type { PaginationContextValue, PaginationProviderProps } from '../types'; export declare const PaginationContext: React.Context; export declare const PaginationProvider: ({ onSelectedPageChange, selectedPage, visibleElementsCount, pagesCount, indicatedPages, disabledPages, onItemHover, labels, children }: React.PropsWithChildren) => React.JSX.Element;