import type { Components, JSX } from "../types/components";

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