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