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