import { default as React } from 'react'; import { RouteConfig } from '../RouterTabs/RouterTabs'; export type MobileTabsOptionsProps = { /** Array of the RouteConfig object. Needed to render the tab options for mobile. */ mobileConfig: RouteConfig[]; /** The option that is currently selected. */ active: string; /** Callout function to set the active option */ setActive: (label: string) => void; /** Pass in a navigate function (useHistory, useNavigate, or other functions) depending on the router the app is using. */ navigate?: (link: string) => void; /** We need the location pathname to determine the current page */ currentPath?: string; drawerCloseCallout?: (arg: boolean) => void; }; declare const MobileTabsOptions: ({ mobileConfig, active, setActive, navigate, currentPath, drawerCloseCallout, }: MobileTabsOptionsProps) => React.JSX.Element; export default MobileTabsOptions;