import { LitElement } from 'lit'; /** * Top bar is a header component that is always visible at the top of the interface. Top bar allows functionality such as search and contextual menus to be placed at the top of the interface. * * @status ready * @category structure * @slot - Used for the main content of the top bar. We recommend placing your application’s global search functionality into this slot. * @slot end - Optional slot for menus, buttons, toggles, etc. */ export default class TopBar extends LitElement { static styles: import("lit").CSSResult[]; render(): import("lit").TemplateResult<1>; } declare global { interface HTMLElementTagNameMap { 'nord-top-bar': TopBar; } }