import { type ComponentType } from 'react'; import { type TextProps, View, type ViewProps } from 'react-native'; type LIProps = TextProps | ViewProps; declare const UL: typeof View; declare const LI: ComponentType; export { UL, LI };