import { DuetTheme } from "../../common-types"; import { ThemeableComponent } from "../../common/themeable-component"; export type DuetSubmenuBarDropdownLinkEscapeEvent = { originalEvent: KeyboardEvent; component: "duet-submenu-bar-dropdown-link"; }; export declare class DuetSubmenuBarDropdownLink implements ThemeableComponent { /** * Own Properties. */ /** * Reference to host HTML element. */ element: HTMLElement; /** * Theme. */ theme: DuetTheme; /** * Active */ active: boolean; /** * Href */ href: string; /** * Icon */ icon: string; /** * Caret */ caret: boolean; /** * Highlight */ highlight: boolean; /** * Component lifecycle events. */ componentWillLoad(): void; private handleEscape; /** * render() function * Always the last one in the class. */ render(): any; }