import React from 'react';
export type TreeVariantsMode = 'inline' | 'drawer';
export interface TreeVariantsProps {
    mode: TreeVariantsMode;
}
export declare const TreeVariants: React.FC<TreeVariantsProps>;
