import type { Components, JSX } from "../types/components";

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