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