import type { StyleProp, ViewStyle } from 'react-native'; import type { RenderTabBar, Route } from './types'; type Props = { routes: ReadonlyArray; currentIndex: number; onPress: (index: number) => void; render: RenderTabBar; contentContainerStyle?: StyleProp; style: StyleProp; overflowWitdth?: number; }; export declare function TabBar({ routes, currentIndex, onPress, render, contentContainerStyle, overflowWitdth, style, }: Props): JSX.Element; export {}; //# sourceMappingURL=TabBar.d.ts.map