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