import React, { ForwardedRef } from "react"; export interface ListViewProps { dataSource: T[] | null | undefined; renderItem: (item: T, index: number, extraData?: D) => React.ReactNode; className?: string; contentClassName?: string; isLoading?: boolean; loadMore?: () => void; style?: React.CSSProperties; extraData?: D; emptyView?: React.ReactNode; } export type ListViewRef = ForwardedRef<{ scroll: (direction: { x: number; y: number; }) => void; }>; export declare const ListView: (props: ListViewProps & { ref?: React.ForwardedRef<{ scroll: (direction: { x: number; y: number; }) => void; }> | undefined; }) => JSX.Element; //# sourceMappingURL=listView.d.ts.map