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