import React from 'react';
import type { Tree } from '../../types';
declare type TreeWrapperProps = {
    isRoot?: boolean;
    fill?: boolean;
    flat?: boolean;
    parent?: string;
    tree: Tree;
    toggled: boolean;
};
export declare const TreeWrapper: React.MemoExoticComponent<({ isRoot, fill, flat, parent, tree, toggled }: TreeWrapperProps) => React.JSX.Element>;
export {};
