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