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