import React from "react"; import { FlatListProps, StyleProp } from "react-native"; import { ScreenBaseProps } from "./ScreenBase"; type Props = { listStyle?: StyleProp; children?: React.ReactNode; keyExtractor?: (item: any, index: number) => string; renderItem?: (info: { item: any; index: number; }) => React.ReactNode; }; export declare const ListScreen: React.FC>; export declare const ListPlaceholder: { (): null; displayName: string; }; export {}; //# sourceMappingURL=ListScreen.d.ts.map