import { LitElement } from 'lit'; /** * Compact toolbar surface for buttons, fields, and menus. * * @slot - Toolbar controls. * @csspart chrome - The toolbar chrome surface. * @csspart toolbar - Alias for the toolbar chrome surface. * @csspart controls - The toolbar controls container. */ export declare class W1cToolbar extends LitElement { render(): import("lit").TemplateResult<1>; static styles: import("lit").CSSResult; } declare global { interface HTMLElementTagNameMap { 'w1c-toolbar': W1cToolbar; } }