UNPKG

react-native-autocomplete-dropdown

Version:

Dropdown Item picker with search and autocomplete (typeahead) functionality for react native

14 lines 434 B
import type { FC } from 'react'; import type { ViewProps } from 'react-native'; interface ScrollViewListItemProps { highlight: string; title: string; style?: ViewProps['style']; onPress?: () => void; ignoreAccents?: boolean; numberOfLines?: number; theme?: 'light' | 'dark'; } export declare const ScrollViewListItem: FC<ScrollViewListItemProps>; export {}; //# sourceMappingURL=ScrollViewListItem.d.ts.map