/// export interface ITopNavItem { id: number; name: string; translation?: string; path?: string; link?: string; subRoutes?: Array; } export declare class TopNavComponent implements ng.IComponentOptions { template: string; bindings: { [binding: string]: string; }; controller: typeof TopNav; } export declare class TopNav { navItems: Array; }