import type View from './View__'; import type Frontend from './Frontend__'; import BaseNode from '../common/BaseNode'; /** * 静态字符串 */ export declare class StaticString extends BaseNode { /** 类名 */ static readonly ConceptName: string; /** * 是否为抽象类 * 抽象类不能产生 concept: string */ static isAbstract: boolean; /** 继承链 */ static readonly inheritanceChain: string[]; /** * 产品概念 */ readonly concept: 'StaticString'; /** * 字符串的值 */ value: string; /** * 国际化键 */ i18nKey?: string; /** * @param source 需要合并的部分参数 */ constructor(source?: Partial); static from(source: any, parentNode?: any, parentKey?: string): StaticString; name?: string; /** * 设置字符串的值 */ setValue(value: string): void; /** * 祖先 View */ get view(): View; /** * 祖先 Frontend */ get frontend(): Frontend; toNaturalTS(state?: import("@lcap/nasl-types/out/translator").TranslatorState): string; toTextualNASL(state?: import("@lcap/nasl-types/out/translator").TranslatorState): string; } export default StaticString; //# sourceMappingURL=StaticString__.d.ts.map