import type { LinkProps } from '@teambit/base-react.navigation.link'; import type { RouteProps } from 'react-router-dom'; export interface Section { route: RouteProps; navigationLink: LinkProps; /** * text to be used in the mobile res dropdown */ displayName?: string; order?: number; hideInMinimalMode?: boolean; }