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