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