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