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