UNPKG

@rhds/elements

Version:

Red Hat Design System Elements

23 lines (22 loc) 700 B
import { LitElement } from 'lit'; import { type ColorPalette } from '../../lib/context/color/provider.js'; /** * Accordion Panel * * @slot * The content of the accordion panel can be any basic markup including but not limited to div, paragraph, or nested accordion panels. */ export declare class RhAccordionPanel extends LitElement { static readonly version = "{{version}}"; static readonly styles: CSSStyleSheet[]; expanded: boolean; colorPalette?: ColorPalette; private on?; connectedCallback(): void; render(): import("lit").TemplateResult<1>; } declare global { interface HTMLElementTagNameMap { 'rh-accordion-panel': RhAccordionPanel; } }