import { Animated, type LayoutChangeEvent, type PressableAndroidRippleConfig, type StyleProp, type ViewStyle } from 'react-native'; import type { NavigationState, Route, TabDescriptor } from './types'; export type Props = TabDescriptor & { position: Animated.AnimatedInterpolation; route: T; navigationState: NavigationState; activeColor?: string; inactiveColor?: string; pressColor?: string; pressOpacity?: number; onLayout?: (event: LayoutChangeEvent) => void; onPress: () => void; onLongPress: () => void; defaultTabWidth?: number; style: StyleProp; android_ripple?: PressableAndroidRippleConfig; }; export declare function TabBarItem(props: Props): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=TabBarItem.d.ts.map