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