import { VirtualizedListProps } from './Types'; /** * VirtualizedList component using react-window for efficient rendering * Supports both fixed and dynamic item heights */ export declare function VirtualizedList({ data, itemHeight, height, width, renderItem, overscanCount, className, style, innerElementType, outerElementType, onScroll, initialScrollTop, itemKey, direction, useIsScrolling, ...restProps }: VirtualizedListProps): JSX.Element;