import React from 'react';
interface PropsType {
    type: 'add' | 'remove';
    wbsKey: string;
    tagLinkedKeys: any[];
    onLink: (keys: React.Key[]) => void;
    onUnlink: (keys: React.Key[]) => void;
}
export declare const ModelTree: ({ type, wbsKey, tagLinkedKeys, onLink, onUnlink }: PropsType) => JSX.Element;
export {};
