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