react-native-actions-sheet-picker
Version:
A React Native component that provides a filterable select dropdown/picker.
5 lines (4 loc) • 434 B
TypeScript
import type { PickerProps } from './Picker.types';
export declare const onOpen: (id: any) => void;
export declare const onClose: (id: any) => void;
export declare const Picker: <T>({ id, data, inputValue, searchable, loading, label, height, closeText, placeholderText, noDataFoundText, placeholderTextColor, setSelected, onSearch, searchInputProps, flatListProps, actionsSheetProps, renderListItem, }: PickerProps<T>) => JSX.Element;