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