import { MapProvider } from "./MapProvider"; import type { IActivityHandler, IActivityContext } from "../../IActivityHandler"; /** Defines inputs for the GetTable activity. */ export interface GetTableInputs { tableId: string | number; mapServiceId?: string | number; } /** Defines outputs for the GetTable activity. */ export interface GetTableOutputs { /** @description The result table. */ table?: __esri.Layer; } export declare class GetTable implements IActivityHandler { static readonly action = "gcx:wf:arcgis::GetTable"; static readonly suite = "gcx:wf:builtin"; execute(inputs: GetTableInputs, _context: IActivityContext, MapProviderType: typeof MapProvider): Promise; }