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