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