import { DuetTheme } from "../../common-types"; import { ThemeableComponent } from "../../common/themeable-component"; export declare class DuetToolbarLink implements ThemeableComponent { /** * Own Properties. */ /** * Reference to host HTML element. */ element: HTMLElement; /** * Theme. */ theme: DuetTheme; /** * Variation. */ variation: "default" | "negative"; /** * Active */ active: boolean; /** * 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; /** * render() function * Always the last one in the class. */ render(): any; }