import { LitElement } from 'lit'; import '../icon/Icon.js'; /** * Navigation group includes all the actions or items in a single * group and is used for grouping items into related categories. * * @category navigation * @status ready * @slot - The default slot used for the nav items. * * @fires {NordEvent} toggle - Dispatched whenever a nav item's state changes between open and closed. * @fires {NordEvent} activate - Dispatched whenever a nav item has been marked as active */ export default class NavGroup extends LitElement { static styles: import("lit").CSSResult[]; /** * Heading and accessible label for the nav group */ heading?: string; render(): import("lit").TemplateResult<1>; } declare global { interface HTMLElementTagNameMap { 'nord-nav-group': NavGroup; } }