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