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