import React from 'react'; import { FlatListProps } from 'react-native'; export interface BoomListProps extends FlatListProps { data: any[]; headerHeight: number; listRef?: any; renderItem: (item?: any) => React.ReactElement; renderHeader: () => React.ReactElement | React.ReactElement; onHeaderMoving?: () => void; onReleaseToRefresh?: () => void; onRefreshing?: () => void; } export declare const BoomList: React.ForwardRefExoticComponent>; export default BoomList;