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

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