import type { ViewProps } from "@tarojs/components/types/View"; import * as React from "react"; import { type ReactNode } from "react"; export interface IndexListAnchorInstance { scrollIntoView(scrollTop: number): void; } export interface IndexListAnchorProps extends ViewProps { index: number | string; children?: ReactNode; } declare const IndexListAnchor: React.ForwardRefExoticComponent & React.RefAttributes>; export default IndexListAnchor;