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