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