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