import { GestureResponderEvent, StyleProp, ViewStyle, TextStyle } from 'react-native'; export interface InlineButtonProps { onPress: (event: GestureResponderEvent) => void; text?: string; highlightedText?: string; style?: StyleProp; textStyle?: StyleProp; highlightedTextStyle?: StyleProp; }