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