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