import * as React from 'react'; import { ViewStyle, StyleProp, ColorValue, PressableProps } from 'react-native'; type ButtonProps = Omit; export interface TabButtonProps extends ButtonProps { style?: StyleProp; disabled?: boolean; children?: React.ReactNode; pressColor?: ColorValue; pressOpacity?: number; } declare const TabButton: React.FC; export default TabButton;