import { SideNavItem } from '../../templates/page-wrapper/types'; import { BottomNavMetadata } from './types'; export interface SideNavFromBottomNavOptions { translate?: (key: string, namespace?: string) => string; exact?: boolean; } export declare function buildSideNavItemsFromBottomNav(config: BottomNavMetadata, options?: SideNavFromBottomNavOptions): SideNavItem[];