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