import React from 'react'; export interface DbScrollListProps { data: T[]; renderItem: (item: T, index: number) => React.ReactNode; keyExtractor?: (item: T, index: number) => string; onEndReached?: () => void; onRefresh?: () => void; refreshing?: boolean; loadingMore?: boolean; style?: any; contentContainerStyle?: any; threshold?: number; ListFooterComponent?: React.ReactNode; } declare const DbScrollList: ({ data, renderItem, keyExtractor, onEndReached, onRefresh, refreshing, loadingMore, style, contentContainerStyle, threshold, ListFooterComponent, }: DbScrollListProps) => JSX.Element; export default DbScrollList;