/** Standard imports. */ import type { IActivityHandler } from "../../IActivityHandler"; /** Defines inputs to the activity. */ export interface EvaluateAsyncInputs { expression: any; } /** Defines outputs to the activity. */ export interface EvaluateAsyncOutputs { /** @description The result of the expression evaluation. */ result: any; } export declare class EvaluateAsync implements IActivityHandler { static readonly action = "gcx:wf:core::EvaluateAsync"; static readonly suite = "gcx:wf:builtin"; execute(inputs: EvaluateAsyncInputs): Promise; }