/** * Copyright Aquera Inc 2025 * * This source code is licensed under the BSD-3-Clause license found in the * LICENSE file in the root directory of this source tree. */ import { CSSResultArray, TemplateResult } from 'lit'; import NileElement from '../internal/nile-element'; /** * Nile inline sidebar group. * * @tag nile-inlinesidebar-group * * @attr label - Optional group label * @attr divider - Whether to show a divider below the group (default: true) * * @slot - Inline sidebar items * @slot label - Optional label/header for the group */ export declare class NileInlineSidebarGroup extends NileElement { label: string; divider: boolean; static get styles(): CSSResultArray; render(): TemplateResult; private hasLabelSlot; } export default NileInlineSidebarGroup; declare global { interface HTMLElementTagNameMap { 'nile-inline-sidebar-group': NileInlineSidebarGroup; } }