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