export interface TreeTheme {
    base: string;
    tree: string;
    arrow: string;
    node: {
        base: string;
        collapsed: string;
        disabled: string;
        leaf: string;
        label: string;
        button: {
            base: string;
            icon: string;
        };
    };
    nodeBlock: string;
    subtree: string;
}
export declare const treeTheme: TreeTheme;
export declare const legacyTreeTheme: TreeTheme;
