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