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