react-native-autocomplete-dropdown
Version:
Dropdown Item picker with search and autocomplete (typeahead) functionality for react native
13 lines • 404 B
TypeScript
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;
}
export declare const ScrollViewListItem: FC<ScrollViewListItemProps>;
export {};
//# sourceMappingURL=ScrollViewListItem.d.ts.map