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