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