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