import type { ViewProps } from "@tarojs/components/types/View"; import * as React from "react"; import { type ReactNode } from "react"; export interface IndexListProps extends ViewProps { sticky?: boolean; stickyOffsetTop?: number | string; inner?: boolean; delay?: number; showSidebar?: boolean; children?: ReactNode; onChange?: (current: number, anchor: number | string) => void; } declare const IndexList: React.ForwardRefExoticComponent & React.RefAttributes>; export default IndexList;