import type { Route } from '@react-navigation/native'; import React from 'react'; import { StyleProp, TextStyle, ViewStyle } from 'react-native'; declare type Props = { route: Route; horizontal: boolean; badge?: string | number; badgeStyle?: StyleProp; activeOpacity: number; inactiveOpacity: number; activeTintColor: string; inactiveTintColor: string; renderIcon: (props: { focused: boolean; color: string; size: number; }) => React.ReactNode; renderLabel: ({ focused }: { focused: boolean; }) => React.ReactNode; style: StyleProp; }; export default function TabBarIcon({ route: _, horizontal, badge, badgeStyle, activeOpacity, inactiveOpacity, activeTintColor, inactiveTintColor, renderIcon, renderLabel, style, }: Props): JSX.Element; export {};