import ViewBlock from './ViewBlock__'; /** * 带截图的代码块 */ export declare class ViewBlockWithImage extends ViewBlock { /** 类名 */ static readonly ConceptName: string; /** * 是否为抽象类 * 抽象类不能产生 concept: string */ static isAbstract: boolean; /** 继承链 */ static readonly inheritanceChain: string[]; /** * 产品概念 */ readonly concept: 'ViewBlockWithImage'; /** * 截图 */ screenshot: string; /** * 手绘 */ drawing: string; /** * @param source 需要合并的部分参数 */ constructor(source?: Partial); static from(source: any, parentNode?: any, parentKey?: string): ViewBlockWithImage; name?: string; } export default ViewBlockWithImage; //# sourceMappingURL=ViewBlockWithImage__.d.ts.map