/** * Copyright Aquera Inc 2023 * * 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 side-bar-group component. * * A logical grouping of sidebar items, optionally with a label and/or footer placement. * * @tag nile-side-bar-group * * @slot - Default slot for group items (nile-side-bar-group-item) * @csspart base - The group container * @csspart label - The group label element */ export declare class NileSideBarGroup extends NileElement { /** * Optional label for the group. */ label: string; /** * Marks this group as footer (sticks to bottom of sidebar). */ footer: boolean; divider: boolean; /** * The styles for nile-side-bar-group * @remarks Extendable via super if needed */ static get styles(): CSSResultArray; render(): TemplateResult; } export default NileSideBarGroup; declare global { interface HTMLElementTagNameMap { 'nile-side-bar-group': NileSideBarGroup; } }