import { ThemeableComponent } from "../../common"; import { DuetTheme } from "../../common-types"; /** * @slot left - Slot for content in left side. * @slot right - Slot for content in right side. */ export declare class DuetToolbar implements ThemeableComponent { /** * Own Properties. */ /** * Reference to host HTML element. */ element: HTMLElement; /** * Theme. */ theme: DuetTheme; /** * Variation. Secondary is not supported for Turva theme. Negative is deprecated. */ variation: "default" | "primary" | "negative" | "secondary"; /** * 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; /** * Component lifecycle events. */ componentWillLoad(): void; /** * render() function * Always the last one in the class. */ render(): any; }