import React from "react"; import type { FlatListProps } from "../type"; interface Props extends Pick, "data" | "renderItem" | "gap" | "emptyPlaceholder" | "rowKey" | "endOfListMessage" | "onPullUpLoading" | "endReachThreshold" | "loading"> { hasNextPageMessage?: string; } export declare const Content: (props: Props) => React.JSX.Element; export {};