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