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