import React from 'react'; import { StyleProp, StyleSheet, View, ViewStyle } from 'react-native'; import type { Theme, AnyValue } from '../../types'; import { withTheme } from '../../core/theming'; import getSelectOptions, { Option } from './SelectBase'; import { ScrollView, Panel } from '../..'; // TODO: multiselect type Props = { onChange: (value: AnyValue) => void; options: Array