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