import type { IActivityHandler } from "../../IActivityHandler"; /** Defines inputs for the GetItemAtIndex activity. */ export interface GetItemAtIndexInputs { collection: any[]; index: number; itemType?: "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 from the GetItemAtIndex activity. */ export interface GetItemAtIndexOutputs { /** @description The item. */ item: any; } export declare class GetItemAtIndex implements IActivityHandler { static readonly action = "gcx:wf:core::GetItemAtIndex"; static readonly suite = "gcx:wf:builtin"; execute(inputs: GetItemAtIndexInputs): GetItemAtIndexOutputs; }