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