/** Standard imports. */ import type { IActivityHandler, IActivityContext } from "../../IActivityHandler"; /** Defines inputs to the GetWorkflowInputs activity. */ export interface GetWorkflowInputsInputs { inputsType?: "any" | "Object" | "{ id: number; name: string; location: esri.Point; }" | string; } /** Defines outputs to the GetWorkflowInputs activity. */ export interface GetWorkflowInputsOutputs { /** @description The inputs to the workflow. */ inputs: object; } export declare class GetWorkflowInputs implements IActivityHandler { static readonly action = "gcx:wf:core::GetWorkflowInputs"; static readonly suite = "gcx:wf:builtin"; execute(_inputs: GetWorkflowInputsInputs, context: IActivityContext): GetWorkflowInputsOutputs; }