import type { StyleProp, ViewStyle } from 'react-native'; import type { Route, RenderTabBar, RenderScene } from './types'; type Props = { routes: ReadonlyArray; onPress: (index: number) => void; renderTabBar: RenderTabBar; renderScene: RenderScene; style?: StyleProp; tabBarStyle?: StyleProp; tabBarContentContainerStyle?: StyleProp; tabBarOverflowWitdth?: number; }; export declare function TabView({ routes, onPress, renderTabBar, renderScene, style, tabBarStyle, tabBarContentContainerStyle, tabBarOverflowWitdth, }: Props): JSX.Element; export {}; //# sourceMappingURL=TabView.d.ts.map