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