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