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