import type { IActivityHandler } from "../../IActivityHandler"; /** Defines inputs for the Symbol From JSON activity. */ export interface SymbolFromJsonInputs { json: string | object; } /** Defines outputs for the Symbol From JSON activity. */ export interface SymbolFromJsonOutputs { /** @description The symbol result. */ symbol?: __esri.Symbol; } export declare class SymbolFromJson implements IActivityHandler { static readonly action = "gcx:wf:arcgis::SymbolFromJson"; static readonly suite = "gcx:wf:builtin"; execute(inputs: SymbolFromJsonInputs): SymbolFromJsonOutputs; }