import { ChangeDetectorRef, ElementRef } from '@angular/core'; /** Primary navigation links */ export declare class NavbarLinkComponent { private el; private ref; /** (optional) forces active state *Default is `null`.* */ active?: boolean; /** RouterLink uri. See https://angular.io/api/router/RouterLink */ uri: string; /** The text to display. This can also optionally be the contents within the element */ linkText: string; /** Sets the RouterLinkActive options to match the url exactly to set active state. *Default is false.* * See https://angular.io/api/router/RouterLinkActive#description */ exact: boolean; _hidden: boolean; constructor(el: ElementRef, ref: ChangeDetectorRef); /** Disable visibility of component from view */ hide(): void; /** Enable visibility of component from view */ show(): void; _getWidth(): any; }