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