import { TreeItem, TreeItemOptions } from '@microsoft/fast-foundation'; import { treeItemStyles as styles } from './tree-item.styles.js'; /** * Tree item class * * @public * @tagname jp-tree-item */ declare class JupyterTreeItem extends TreeItem { } /** * A function that returns a {@link @microsoft/fast-foundation#TreeItem} registration for configuring the component with a DesignSystem. * Implements {@link @microsoft/fast-foundation#treeItemTemplate} * * * @public * @remarks * Generates HTML Element: `` * */ export declare const jpTreeItem: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition | undefined) => import("@microsoft/fast-foundation").FoundationElementRegistry>; export { JupyterTreeItem as TreeItem, styles as treeItemStyles };