import { GestureResponderEvent, StyleProp, ViewStyle, TextStyle } from 'react-native'; export interface ButtonProps { title: string; onPress: (event: GestureResponderEvent) => void; style?: StyleProp; textStyle?: StyleProp; loading?: boolean; }