/// import CSS from 'csstype'; /** * routes is an object with keys set as the routes and entries as urls to the image src for the route icon * also needs the app logo src url and menu icon src url * @param params */ declare function NavBar({ localStorage, storageKey, initOpen, routes, onRouteClick, bottomRoutes, titleIconSrc, menuIconSrc, titleIconStyle, titleIconHeight, titleIconWidth, iconWidth, iconHeight }: { routes: { [route: string]: string; }; onRouteClick: (route: string) => void; titleIconSrc: string; menuIconSrc: string; bottomRoutes?: { [route: string]: string; }; titleIconStyle?: CSS.Properties; titleIconHeight?: string; titleIconWidth?: string; onTitleClick?: () => void; localStorage?: boolean; storageKey?: string; initOpen?: boolean; iconWidth?: string; iconHeight?: string; }): JSX.Element; export default NavBar;