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