import { TranslatorState, TranslatorGenerator } from '@lcap/nasl-translator'; import { ElementToVueOptions } from './ViewElement__'; import type BatchAssignment from './BatchAssignment__'; import type View from './View__'; import type BusinessComponent from './BusinessComponent__'; import * as types from './utils/types'; import LogicItem from './LogicItem__'; /** * 赋值语句 */ export declare class Assignment extends LogicItem { /** 类名 */ static readonly ConceptName: string; /** * 是否为抽象类 * 抽象类不能产生 concept: string */ static isAbstract: boolean; /** 继承链 */ static readonly inheritanceChain: string[]; /** * 产品概念 */ readonly concept: 'Assignment'; /** * 左边项 */ left: types.LogicItemNode; /** * 右边项 */ right: types.LogicItemNode; /** * @param source 需要合并的部分参数 */ constructor(source?: Partial); static from(source: any, parentNode?: any, parentKey?: string): Assignment; /** * 设置左边项 */ setLeft(left: types.LogicItemNode): void; /** * 设置右边项 */ setRight(right: types.LogicItemNode): void; name?: string; static getDefaultOptions(): { left: { concept: string; name: string; }; }; replaceBatchAssignment(): BatchAssignment; toVue(options?: ElementToVueOptions): string; toUI(state?: TranslatorState, hideDetails?: boolean): string; toJS(state?: TranslatorState): string; get likeComponent(): View | BusinessComponent; toEmbeddedTS(state?: import("@lcap/nasl-types/out/translator").TranslatorState): TranslatorGenerator; toNaturalTS(state?: import("@lcap/nasl-types/out/translator").TranslatorState): string; toTextualNASL(state?: import("@lcap/nasl-types/out/translator").TranslatorState): string; } export default Assignment; //# sourceMappingURL=Assignment__.d.ts.map