/** * 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-body component. * * @tag nile-inline-sidebar-item-body * */ export declare class NileInlineSidebarItemBody extends NileElement { /** Maximum number of visible lines before text is truncated with an ellipsis. */ lines: number; content: string; showTooltip: boolean; private isTruncated; private bodyContentEl; disabled: boolean; active: boolean; private resizeObserver?; /** * The styles for nile-inline-sidebar-item-body * @remarks If you are extending this class you can extend the base styles with super. Eg `return [super(), myCustomStyles]` */ static get styles(): CSSResultArray; firstUpdated(): void; disconnectedCallback(): void; private checkTruncation; private get contentTemplate(); /** * Render method * @slot This is a slot test */ render(): TemplateResult; } export default NileInlineSidebarItemBody; declare global { interface HTMLElementTagNameMap { 'nile-inline-sidebar-item-body': NileInlineSidebarItemBody; } }