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