/** * 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-item-header component. * * @tag nile-inline-sidebar-item-header * */ export declare class NileInlineSidebarItemHeader extends NileElement { active: boolean; disabled: boolean; /** * The styles for nile-inline-sidebar-item-header * @remarks If you are extending this class you can extend the base styles with super. Eg `return [super(), myCustomStyles]` */ static get styles(): CSSResultArray; /** * Render method * @slot This is a slot test */ render(): TemplateResult; } export default NileInlineSidebarItemHeader; declare global { interface HTMLElementTagNameMap { 'nile-inline-sidebar-item-header': NileInlineSidebarItemHeader; } }