import { LitElement } from 'lit'; /** * Dropdown group includes all the actions or items in a single dropdown * group and is used for grouping items into related categories. * * @status ready * @category action * @slot - The dropdown group content. */ export default class DropdownGroup extends LitElement { static styles: import("lit").CSSResult[]; /** * Heading and accessible label for the dropdown group. */ heading?: string; render(): import("lit").TemplateResult<1>; } declare global { interface HTMLElementTagNameMap { 'nord-dropdown-group': DropdownGroup; } }