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