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