import { MMELNode } from '../interface/baseinterface'; import { MMELEnum } from '../interface/datainterface'; import { MMELSubprocess } from '../interface/flowcontrolinterface'; import { MMELProcess } from '../interface/processinterface'; import { MMELComment, MMELFigure, MMELLink, MMELMetadata, MMELNote, MMELProvision, MMELReference, MMELRole, MMELTable, MMELTerm, MMELTextSection, MMELVariable, MMELVarSetting, MMELView } from '../interface/supportinterface'; /** * Convert the model to text */ export declare function toNodeModel(x: MMELNode): string; export declare function toEnumModel(e: MMELEnum): string; export declare function toSubprocessModel(sub: MMELSubprocess): string; export declare function toVariableModel(v: MMELVariable): string; export declare function toViewProfile(v: MMELView): string; export declare function toNoteModel(x: MMELNote): string; export declare function toVarSettingModel(v: MMELVarSetting): string; export declare function toMetaDataModel(meta: MMELMetadata): string; export declare function toProvisionModel(pro: MMELProvision): string; export declare function toReferenceModel(ref: MMELReference): string; export declare function toTermsModel(term: MMELTerm): string; export declare function toFigModel(fig: MMELFigure): string; export declare function toSectionModel(s: MMELTextSection): string; export declare function toLinkModel(l: MMELLink): string; export declare function toCommentModel(c: MMELComment): string; export declare function toTableModel(table: MMELTable): string; export declare function toRoleModel(role: MMELRole): string; export declare function toProcessModel(process: MMELProcess): string; //# sourceMappingURL=serailizeformater.d.ts.map