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