import BaseNode from '../common/BaseNode'; /** * IDE 中使用的编辑组件 */ export declare class UseComponent extends BaseNode { /** 类名 */ static readonly ConceptName: string; /** * 是否为抽象类 * 抽象类不能产生 concept: string */ static isAbstract: boolean; /** 继承链 */ static readonly inheritanceChain: string[]; /** * 产品概念 */ readonly concept: 'UseComponent'; /** * type */ type: string; /** * 需要传入的属性 */ attrs: string; /** * @param source 需要合并的部分参数 */ constructor(source?: Partial); static from(source: any, parentNode?: any, parentKey?: string): UseComponent; name?: string; } export default UseComponent; //# sourceMappingURL=UseComponent__.d.ts.map