import { TranslatorState, TranslatorGenerator } from '@lcap/nasl-translator'; import { ElementToVueOptions } from './ViewElement__'; import LogicItem from './LogicItem__'; /** * 布尔型字面量 */ export declare class BooleanLiteral extends LogicItem { /** 类名 */ static readonly ConceptName: string; /** * 是否为抽象类 * 抽象类不能产生 concept: string */ static isAbstract: boolean; /** 继承链 */ static readonly inheritanceChain: string[]; /** * 产品概念 */ readonly concept: 'BooleanLiteral'; /** * 字面量的值 */ value: string; /** * @param source 需要合并的部分参数 */ constructor(source?: Partial); static from(source: any, parentNode?: any, parentKey?: string): BooleanLiteral; name?: string; toVue(options?: ElementToVueOptions): string; toUI(state?: TranslatorState, hideDetails?: boolean): string; toJS(state?: TranslatorState): string; toBrief(): string; toBoolean(): any; toEmbeddedTS(state?: import("@lcap/nasl-types/out/translator").TranslatorState): TranslatorGenerator; toNaturalTS(): string; toTextualNASL(): string; /** * 设置布尔值内容 */ setValue(value: string): void; getValue(): string; get completeName(): string; } export default BooleanLiteral; //# sourceMappingURL=BooleanLiteral__.d.ts.map