import React from "react"; import type { FlatListProps } from "./type"; import "./index.less"; export * from "./type"; export declare const FlatList: ({ renderItem, data, rowKey, id, className, gap, refreshing: exactRefreshing, loading, onPullDownRefresh, onPullUpLoading, endReachThreshold, emptyPlaceholder, pullDownMessage, pullUpMessage, endOfListMessage, style, wrapperStyle, }: FlatListProps) => React.JSX.Element;