import { CSSResultGroup } from "lit"; import { SigveloElement } from "@mcp-b/wc-support/base/sigvelo-element"; //#region src/components/form-section/form-section.d.ts /** * * * @summary Groups related form controls under an accessible title and optional description. * @tag sigvelo-form-section * @documentation https://design-system.sigvelo.com/docs/components/form-section * @status stable * @since 1.0 * * @slot - Related form controls and supporting content. * @csspart fieldset - The semantic fieldset container. * @csspart title - The fieldset legend. * @csspart description - The optional description. * @csspart content - The controls container. */ declare class SigveloFormSection extends SigveloElement { static styles: CSSResultGroup; /** The section title rendered as a fieldset legend. */ title: string; /** Optional supporting description. */ description: string; render(): import("lit-html").TemplateResult<1>; } declare global { interface HTMLElementTagNameMap { "sigvelo-form-section": SigveloFormSection; } } //#endregion export { SigveloFormSection as t };