import React from 'react'; import { VirtualizedListRef, VirtualizedRenderItem } from './VirtualizedListComponent'; export type ScrollAlign = 'start' | 'center' | 'end' | 'auto'; export * from './VirtualizedListComponent'; export type VirtualizedListProps = { readonly items: readonly T[]; readonly renderItem: VirtualizedRenderItem; readonly estimatedItemHeight?: number; readonly itemHeight?: number; readonly overscan?: number; readonly scrollToIndex?: number | null; readonly scrollToAlign?: ScrollAlign; readonly onEndReached?: () => void; }; declare const _default: (props: VirtualizedListProps & { ref?: React.Ref | undefined; }) => React.ReactElement; export default _default;