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