import { LitElement } from 'lit'; /** * The header is a block of designated space for labelling the currently * viewed context as well as providing primary actions. * * @status ready * @category structure * @slot - The header content. * @slot end - Optional slot for buttons, toggles, etc. */ export default class Header extends LitElement { static styles: import("lit").CSSResult[]; private endSlot; /** * Controls the size of the header component. */ size: 'm' | 's'; render(): import("lit").TemplateResult<1>; } declare global { interface HTMLElementTagNameMap { 'nord-header': Header; } }