import type { Components, JSX } from "../types/components"; interface DsAccordion extends Components.DsAccordion, HTMLElement {} export const DsAccordion: { prototype: DsAccordion; new (): DsAccordion; }; /** * Used to define this component and all nested components recursively. */ export const defineCustomElement: () => void;