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