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