/** * 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'; /** * Content panel associated with a `nile-inline-sidebar-item`. * Linked via the item's `panel` property matching this panel's `name`. * * @tag nile-inline-sidebar-panel * * @attr name - Identifier that links this panel to a sidebar item's `panel` property. * @attr active - Whether this panel is currently visible. * * @slot - Default slot for panel content. * * @csspart base - The panel container. */ export declare class NileInlineSidebarPanel extends NileElement { /** Identifier that links this panel to a sidebar item's `panel` property. */ name: string; /** Whether this panel is currently visible. */ active: boolean; static get styles(): CSSResultArray; render(): TemplateResult; } export default NileInlineSidebarPanel; declare global { interface HTMLElementTagNameMap { 'nile-inline-sidebar-panel': NileInlineSidebarPanel; } }