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