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