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