import * as React from 'react'; import { Animated, LayoutChangeEvent, PressableAndroidRippleConfig, StyleProp, TextStyle, ViewStyle } from 'react-native'; import type { NavigationState, Route, Scene } from './types'; export type Props = { position: Animated.AnimatedInterpolation; route: T; navigationState: NavigationState; activeColor?: string; inactiveColor?: string; pressColor?: string; pressOpacity?: number; getLabelText: (scene: Scene) => string | undefined; getAccessible: (scene: Scene) => boolean | undefined; getAccessibilityLabel: (scene: Scene) => string | undefined; getTestID: (scene: Scene) => string | undefined; renderLabel?: (scene: { route: T; focused: boolean; color: string; }) => React.ReactNode; renderIcon?: (scene: { route: T; focused: boolean; color: string; }) => React.ReactNode; renderBadge?: (scene: Scene) => React.ReactNode; onLayout?: (event: LayoutChangeEvent) => void; onPress: () => void; onLongPress: () => void; defaultTabWidth?: number; labelStyle?: StyleProp; style: StyleProp; android_ripple?: PressableAndroidRippleConfig; }; export declare function TabBarItem(props: Props): JSX.Element; //# sourceMappingURL=TabBarItem.d.ts.map