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