import * as types from './utils/types'; import BaseNode from '../common/BaseNode'; import type MemberExpression from './MemberExpression__'; /** * 主管 */ export declare abstract class ManagerV2 extends BaseNode { /** 类名 */ static readonly ConceptName: string; /** * 是否为抽象类 * 抽象类不能产生 concept: string */ static isAbstract: boolean; /** 继承链 */ static readonly inheritanceChain: string[]; /** * 产品概念 */ readonly concept: 'DirectManagerV2' | 'DepartmentManagerV2'; /** * 下属 */ subordinate: MemberExpression; /** * 级数 */ level: number; /** * @param source 需要合并的部分参数 */ constructor(source?: Partial); static from(source: any, parentNode?: any, parentKey?: string): types.ManagerV2Node; name?: string; } export default ManagerV2; //# sourceMappingURL=ManagerV2__.d.ts.map