export type Size = 'S' | 'M'; export type PageRangeDisplayed = 5 | 7; export type LinkComponentProps = { href: string; className?: string; children?: React.ReactNode; }; export type PaginationContextValue = { page: number; pageCount: number; size: Size; isLinkMode: boolean; makeUrl?: (page: number) => string; LinkComponent: T; makeClickHandler: (value: number) => () => void; linkProps?: Omit, 'href' | 'children'>; }; export declare const PaginationContext: import("react").Context> | null>; export declare function usePaginationContext(): PaginationContextValue; //# sourceMappingURL=PaginationContext.d.ts.map