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