import * as React from 'react'; import { TabsProps } from '../Tabs'; import type { Route, Layout, TabViewState, SceneRendererProps } from '../types'; export type TabBarProps = Omit, 'tabs' | 'value' | 'onChange' | 'scrollable' | 'animatedPosition' | 'initialLayoutWidth'> & Omit & { state: TabViewState; layout?: Partial; scrollEnabled?: boolean; }; declare const TabBar: >(props: TabBarProps) => React.JSX.Element; export default TabBar;