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