import type { IActivityHandler, EmptyOutputs } from "../../IActivityHandler"; /** Defines inputs for the SetFeatureSymbol activity. */ export interface SetFeatureSymbolInputs { feature: __esri.Graphic; symbol: __esri.SymbolUnion; } export declare class SetFeatureSymbol implements IActivityHandler { static readonly action = "gcx:wf:arcgis::SetFeatureSymbol"; static readonly suite = "gcx:wf:builtin"; execute(inputs: SetFeatureSymbolInputs): EmptyOutputs; }