import { TouchableOpacityProps } from 'react-native'; interface BackButtonProps extends TouchableOpacityProps { tintColor?: string; onPress?: () => void; } declare function BackButton({ tintColor, onPress }: BackButtonProps): import("react/jsx-runtime").JSX.Element; export { BackButton };