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