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