import { type ParamListBase, type TabNavigationState } from '@react-navigation/native'; import type { NativeBottomTabDescriptorMap, NativeBottomTabNavigationConfig, NativeBottomTabNavigationHelpers } from '../types'; type Props = NativeBottomTabNavigationConfig & { state: TabNavigationState; navigation: NativeBottomTabNavigationHelpers; descriptors: NativeBottomTabDescriptorMap; }; export default function NativeBottomTabView({ state, layoutDirection, navigation, descriptors, tabBar, ...rest }: Props): import("react/jsx-runtime").JSX.Element; export {};