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