import LibraryBaseElement from '../../internal/library-base-element.js'; import type { CSSResultGroup } from 'lit'; /** * @summary Menu labels are used to describe a group of menu items. * @documentation /components/menu-label * @status stable * @since 1.5 * * @slot - The menu label's content. * * @csspart base - The component's base wrapper. */ export default class OMenuLabel extends LibraryBaseElement { static styles: CSSResultGroup; render(): import("lit-html").TemplateResult<1>; } declare global { interface HTMLElementTagNameMap { 'o-menu-label': OMenuLabel; } }