import { DuetTheme } from "../../common-types"; import { ThemeableComponent } from "../../common/themeable-component"; export declare class DuetSubmenuBarLink implements ThemeableComponent { /** * Reference to host HTML element. */ element: HTMLElement; /** * Theme. */ theme: DuetTheme; /** * Active */ active: boolean; /** * Href */ href: string; /** * Icon */ icon: string; /** * Component lifecycle events. */ componentWillLoad(): void; private handleEscape; /** * render() function * Always the last one in the class. */ render(): any; }