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