import type { ListConstructorProps } from '../types'; import type { VirtualizedListProps } from '../props'; declare const createList: ({ name, getOffset, getItemSize, getItemOffset, getEstimatedTotalSize, getStartIndexForOffset, getStopIndexForStartIndex, initCache, clearCache, validateProps }: ListConstructorProps) => any; export default createList;