import { DuetTheme } from "../../common-types"; import { ThemeableComponent } from "../../common/themeable-component"; export declare class DuetMenuBarDropdownLink implements ThemeableComponent { /** * Own Properties. */ /** * Reference to host HTML element. */ element: HTMLElement; /** * Theme. */ theme: DuetTheme; /** * Href */ href: string; /** * Icon */ icon: string; /** * Adds accessible label for the link that is only shown for screen readers. * Typically, this label text replaces the visible text on the link for users * who use assistive technology. */ accessibleLabel: string; /** * Component lifecycle events. */ componentWillLoad(): void; private getVariant; private handleEscape; /** * render() function * Always the last one in the class. */ render(): any; }