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