import { default as React } from 'react'; import { RouteConfig } from '../RouterTabs'; import { MobileTabsOptionsProps } from '../../MobileTabs/MobileTabsOptions'; type MobileRouterTabsProps = { /** Array of the RouteConfig object. Needed to render the tab options for mobile. */ mobileConfig: RouteConfig[]; navigate: MobileTabsOptionsProps['navigate']; /** Current path from the router */ currentPath: string; /** Optional prop to add a test id to the MobileRouterTabs for QA testing */ qaTestId?: string; }; declare const MobileRouterTabs: ({ mobileConfig, navigate, currentPath, qaTestId, }: MobileRouterTabsProps) => React.JSX.Element; export default MobileRouterTabs;