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