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