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