import React, { Component } from 'react'; import { SectionListProps as RNSectionListProps, StyleProp, ViewStyle } from 'react-native'; import Animated from 'react-native-reanimated'; declare type Props = Omit, 'overScrollMode' | 'bounces' | 'decelerationRate' | 'onScrollBeginDrag' | 'scrollEventThrottle' | 'style'> & { style?: StyleProp>; height?: number; gestureRef?: any; }; export default class FlatList extends Component, {}> { state: { scrollContentHeight: number; }; nativeGestureRef: React.RefObject>>; handleScrollSizeChange: (w: number, h: number) => void; render(): JSX.Element; } export {};