import { LitElement } from 'lit'; /** * Statusbar for messages and simple pane metadata. * * @slot - Status text or panes. * @csspart chrome - The statusbar chrome surface. * @csspart statusbar - Alias for the statusbar chrome surface. * @csspart content - The statusbar content container. */ export declare class W1cStatusbar extends LitElement { render(): import("lit").TemplateResult<1>; static styles: import("lit").CSSResult; } declare global { interface HTMLElementTagNameMap { 'w1c-statusbar': W1cStatusbar; } }