type IndexingCtx = { totalCount?: number; indexOffset?: number; }; declare function IndexingProvider(props: { children?: React.ReactNode; } & IndexingCtx): import('react').FunctionComponentElement>; declare const useIndexing: () => IndexingCtx | null; export { IndexingProvider, useIndexing };