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