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