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