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