import React from 'react'; import type { FlatListProps } from './types'; /** * FlatList — themed wrapper around React Native FlatList. * * Adds `sx` / `contentSx` escape hatches while preserving the full generic API * (`data`, `renderItem`, `keyExtractor`, etc.). * * Note: `useComponentDefaults` is intentionally omitted because the generic * type parameter cannot be represented in ComponentPropsMap at call sites. */ declare function FlatList(props: FlatListProps): React.ReactElement; export { FlatList }; //# sourceMappingURL=FlatList.d.ts.map