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