/** @jsx jsx */ import { FC } from 'react'; import { BoxProps } from 'theme-ui'; import { TreeOwnProps } from './tree-utils'; export declare type TreeProps = TreeOwnProps & BoxProps; /** * Hierarchical collapsible tree structure */ export declare const Tree: FC;