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