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