import BaseNode from '../common/BaseNode'; /** * 页面组件的代码块 */ export declare class ViewBlock extends BaseNode { /** 类名 */ static readonly ConceptName: string; /** * 是否为抽象类 * 抽象类不能产生 concept: string */ static isAbstract: boolean; /** 继承链 */ static readonly inheritanceChain: string[]; /** * 产品概念 */ readonly concept: 'ViewBlock' | 'ViewBlockWithImage'; /** * 标题 */ title: string; /** * 代码 */ code: string; /** * 描述 */ description?: string; /** * @param source 需要合并的部分参数 */ constructor(source?: Partial); static from(source: any, parentNode?: any, parentKey?: string): ViewBlock; name?: string; } export default ViewBlock; //# sourceMappingURL=ViewBlock__.d.ts.map