/// import { ParamListBase, TabNavigationState } from '@react-navigation/native'; import { Animated, StyleProp, ViewStyle } from 'react-native'; import { EdgeInsets } from 'react-native-safe-area-context'; import type { BottomTabBarProps, BottomTabDescriptorMap } from '../types'; declare type Props = BottomTabBarProps & { style?: Animated.WithAnimatedValue>; }; declare type Options = { state: TabNavigationState; descriptors: BottomTabDescriptorMap; layout: { height: number; width: number; }; dimensions: { height: number; width: number; }; }; export declare const getTabBarHeight: ({ state, descriptors, dimensions, insets, style, ...rest }: Options & { insets: EdgeInsets; style: Animated.WithAnimatedValue> | undefined; }) => number; export default function BottomTabBar({ state, navigation, descriptors, insets, style, }: Props): JSX.Element; export {}; //# sourceMappingURL=BottomTabBar.d.ts.map