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

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