import { type ScrollViewProps, type BaseEventOrig } from "@tarojs/components"; import type { ViewProps } from "@tarojs/components/types/View"; import * as React from "react"; import { type ReactNode } from "react"; import type { ListDirection, ListInstance } from "./list.shared"; export interface ListProps extends ViewProps { loading?: boolean; hasMore?: boolean; direction?: ListDirection; offset?: number; immediateCheck?: boolean; disabled?: boolean; fixedHeight?: boolean; children?: ReactNode; onLoad?(): void; onScroll?(e: BaseEventOrig): void; } declare const _default: React.ForwardRefExoticComponent & React.RefAttributes>; export default _default;