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