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