/// import type { Application } from '../../application'; import type { ApplicationDataSource } from '../service/applicationDataSource'; export interface INavRouteProps { dataSource: ApplicationDataSource; app: Application; } export declare const NavRoute: ({ app, dataSource }: INavRouteProps) => JSX.Element;