import React from 'react'; import { FlatList as RNGHFlatList } from 'react-native-gesture-handler'; import { FlatListProps } from 'react-native'; type Props = FlatListProps & React.RefAttributes & { /** * By default refresh control gesture will work in top 15% area of the ScrollView. You can set a different value here. * * Accepts a value between 0-1. */ refreshControlGestureArea?: number; }; export declare const FlatList: (props: Props & { ref?: React.Ref; }) => React.ReactElement; export {}; //# sourceMappingURL=FlatList.d.ts.map