import type { IActivityHandler, EmptyOutputs } from "../../IActivityHandler"; /** Defines inputs for the SetFeatureGeometry activity. */ export interface SetFeatureGeometryInputs { feature: __esri.Graphic; geometry: __esri.GeometryUnion | null | undefined; } export declare class SetFeatureGeometry implements IActivityHandler { static readonly action = "gcx:wf:arcgis::SetFeatureGeometry"; static readonly suite = "gcx:wf:builtin"; execute(inputs: SetFeatureGeometryInputs): EmptyOutputs; }