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