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