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