import type { IActivityHandler } from "../../IActivityHandler"; /** * Inputs for the RunOperation activity. * @product This is intended for internal use only within VertiGIS Studio products. */ export interface RunOperationInputs { operationName: string; operationParameter?: any; } /** * Outputs for the RunOperation activity. * @product This is intended for internal use only within VertiGIS Studio products. */ export interface RunOperationOutputs { /** @description The result of the operation. */ result: any; } export declare class RunOperation implements IActivityHandler { static readonly action = "gcx:wf:app::RunOperation"; static readonly suite = "gcx:wf:builtin"; execute(inputs: RunOperationInputs): RunOperationOutputs; }