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