import React from 'react'; import type { VirtualizedListProps } from './types'; /** * VirtualizedList — generic wrapper around React Native's VirtualizedList. * * NOTE: `useComponentDefaults` is intentionally omitted here because the * generic type parameter `T` is incompatible with the concrete key in * ComponentPropsMap. Use `VirtualizedListBaseProps` for theme overrides. */ declare function VirtualizedList(props: VirtualizedListProps): React.ReactElement; export { VirtualizedList }; //# sourceMappingURL=VirtualizedList.d.ts.map