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