import { default as React } from 'react'; import { StyleProps } from '../../style-engine'; import { navItemStyles } from './styles'; type TreeItemStyleProps = StyleProps; export interface TreeItemProps extends Omit, keyof TreeItemStyleProps>, Omit { label: React.ReactNode; expanded?: boolean; defaultExpanded?: boolean; onExpandedChange?: (expanded: boolean) => void; isActive?: boolean; icon?: React.ReactNode; } export declare function TreeItem({ label, expanded, defaultExpanded, onExpandedChange, isActive, icon, color, size, className, children, ...props }: TreeItemProps): React.JSX.Element; export {};