import { DuetTheme } from "../../common-types"; import { ThemeableComponent } from "../../common/themeable-component"; export declare class DuetToolbarDropdown implements ThemeableComponent { /** * Own Properties. */ private button; /** * Reference to host HTML element. */ element: HTMLElement; /** * Theme. */ theme: DuetTheme; /** * Variation. */ variation: "default" | "negative"; /** * 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; /** * Active */ active: boolean; /** * Open */ open: boolean; /** * Icon */ icon: string; handleFocus(e: any): void; /** * Component lifecycle events. */ componentWillLoad(): void; private onClick; private handleEscape; /** * Sets focus. Use this method instead of the global focus(). */ setFocus(options?: FocusOptions): Promise; /** * render() function * Always the last one in the class. */ render(): any; }