UNPKG

react-native-expo-modal-select

Version:
7 lines 334 B
import type { Item } from '@/types'; import React from 'react'; import { type PressableProps } from 'react-native'; export type TouchableSelectItemProps = Item & PressableProps; declare const SelectItem: ({ label, ...rest }: TouchableSelectItemProps) => React.JSX.Element; export default SelectItem; //# sourceMappingURL=Item.d.ts.map