import { type Rect } from "../utils/dom/rect"; interface IndexListContextValue { sticky?: boolean; stickyOffsetTop?: number | string; activeIndex: number | string; inner: boolean; activeArrayedIndex: number; getListRect(): Rect; getAnchorRects(): Rect[]; getFirstAnchorTop(): number; } declare const IndexListContext: import("react").Context; export default IndexListContext;