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