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