aura-glass
Version:
A comprehensive glassmorphism design system for React applications with 142+ production-ready components
23 lines • 748 B
TypeScript
/**
* Glass TreeView Component
*
* A hierarchical list with collapsible items.
*/
import React from 'react';
import { TreeViewProps, TreeViewContextProps } from './types';
export declare const TreeViewContext: React.Context<TreeViewContextProps | null>;
/**
* TreeView Component
*
* A hierarchical list with collapsible items.
*/
declare const TreeView: React.ForwardRefExoticComponent<TreeViewProps & React.RefAttributes<HTMLUListElement>>;
/**
* GlassTreeView Component
*
* Glass variant of the TreeView component.
*/
declare const GlassTreeView: React.ForwardRefExoticComponent<TreeViewProps & React.RefAttributes<HTMLUListElement>>;
export default TreeView;
export { TreeView, GlassTreeView };
//# sourceMappingURL=TreeView.d.ts.map