/** Standard imports. */ import type { IActivityHandler } from "../../IActivityHandler"; /** Defines inputs to the Create Value activity. */ export interface CreateValueInputs { expression: any; } /** Defines outputs to the Create Value activity. */ export interface CreateValueOutputs { /** @description The value that is the result of the expression evaluation. */ result: any; } export declare class CreateValue implements IActivityHandler { static readonly action = "gcx:wf:core::CreateValue"; static readonly suite = "gcx:wf:builtin"; execute(inputs: CreateValueInputs): CreateValueOutputs; }