import React from 'react'; export interface ScrollListProps { className?: string; style?: React.CSSProperties; renderItem: (item: T, index: number) => React.ReactNode; paddingHeight?: number; loadMoreItems?: () => void | Promise; scrollTo?: () => 'top' | 'bottom' | string; hasMore?: boolean; scrollDirection?: 'up' | 'down'; prefix?: string; data: Array; loading: boolean; onScroll?: (e: Event) => void; } declare const ScrollList: () => React.MemoExoticComponent & React.RefAttributes, "ref"> & React.RefAttributes>>>; export { ScrollList };