import { MapProvider } from "./MapProvider"; import type { IActivityHandler, IActivityContext } from "../../IActivityHandler"; /** Defines inputs to the GetGraphics activity. */ export interface GetGraphicsInputs { layerId?: string | number; geometryType?: string; } /** Defines outputs to the GetGraphics activity. */ export interface GetGraphicsOutputs { /** @description The features of the graphics layer. */ features: __esri.Graphic[]; } export declare class GetGraphics implements IActivityHandler { static readonly action = "gcx:wf:arcgis::GetGraphicsLayerFeatures"; static readonly suite = "gcx:wf:builtin"; execute(inputs: GetGraphicsInputs, _context: IActivityContext, MapProviderType: typeof MapProvider): Promise; }