import React from 'react'; import type { TreeGraphProps } from '../types'; export interface IndentedTreeProps extends TreeGraphProps { theme?: 'default' | 'academy'; } declare const IndentedTree: React.FC; export default IndentedTree;