import { GetStylesApi } from '../../core'; import type { PaginationRootFactory } from './PaginationRoot/PaginationRoot'; export interface PaginationContextValue { total: number; range: (number | 'dots')[]; active: number; disabled: boolean | undefined; getItemProps?: (page: number) => Record; onChange: (page: number) => void; onNext: () => void; onPrevious: () => void; onFirst: () => void; onLast: () => void; getStyles: GetStylesApi; } export declare const PaginationProvider: import("react").Context, usePaginationContext: () => PaginationContextValue;