import type { Components, JSX } from "../types/components";

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