import React, { PureComponent } from 'react'; import { stnr } from '../../interface'; import { WithThemeStyles } from '../theme'; import { ActionSheetStyles } from './styles'; export interface Option { value: stnr; label: string; } export interface ActionSheetProps extends WithThemeStyles { options: Array