UNPKG

react-native-autocomplete-tags

Version:
9 lines (8 loc) 315 B
/// <reference types="react" /> import { PressableProps, TextStyle } from 'react-native'; export declare type SuggestionProps = PressableProps & { label: string; textStyle?: TextStyle; }; declare const Suggestion: ({ label, textStyle, ...props }: SuggestionProps) => JSX.Element; export default Suggestion;