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