import type { IActivityHandler } from "../../IActivityHandler"; /** Defines inputs for the Get Attributes Value activity. */ export interface GetAttributeValuesInputs { features: __esri.Graphic | __esri.FeatureSet | __esri.Graphic[]; attribute: string; valueType?: "any" | "ArrayBuffer" | "boolean" | "Date" | "Error" | "Function" | "number" | "number[]" | "Object" | "string" | "string[]" | "esri.Graphic" | "esri.Extent" | "esri.Geometry" | "esri.Multipoint" | "esri.Point" | "esri.Polygon" | "esri.Polyline" | "esri.PortalGroup" | "esri.PortalUser" | "esri.SpatialReference" | "esri.Layer" | "esri.Symbol" | "esri.AddressCandidate" | "esri.FeatureSet" | "{ id: number; name: string; location: esri.Point; }" | string; } /** Defines outputs for the Get Attribute Values activity. */ export interface GetAttributeValuesOutputs { /** @description The value of the first feature having the attribute assigned. */ value?: any; /** @description The values for the features having the attribute assigned. */ values?: any[]; } export declare class GetAttributeValues implements IActivityHandler { static readonly action = "gcx:wf:arcgis::GetAttributeValues"; static readonly suite = "gcx:wf:builtin"; execute(inputs: GetAttributeValuesInputs): GetAttributeValuesOutputs; }