import { LitElement, html, css, nothing } from 'lit'; import { customElement, property, state } from 'lit/decorators.js'; /** * A visual grouping wrapper for config fields. * Renders a collapsible heading with optional description, * and a slot for fields. Starts collapsed by default. * * The header is a real `
`; } } declare global { interface HTMLElementTagNameMap { 'config-section': ConfigSection; } }