import { WMDataType } from "./wm-data-type"; import { JsonSerializable } from "../json-serializable"; /** * Input or output value of JobEngine */ export declare class WMValue implements JsonSerializable { readonly dataType: WMDataType; readonly value: JsonSerializable; constructor(dataType: WMDataType, value: JsonSerializable); asJson(): any; }