import { ViewProps } from "@tarojs/components/types/View"; import { ReactNode } from "react"; export interface IndexListProps extends ViewProps { sticky?: boolean; stickyOffsetTop?: number | string; children?: ReactNode; } declare function IndexList(props: IndexListProps): JSX.Element; export default IndexList;