import type { IActivityHandler } from "../../IActivityHandler"; export interface ConvertValueToArcGisFieldTypeInputs { value: object; type: "double" | "integer" | "long" | "oid" | "single" | "small-integer" | string; } export interface ConvertValueToArcGisFieldTypeOutputs { /** @description The value converted to the specified type. */ result: object; } export declare class ConvertValueToArcGisFieldType implements IActivityHandler { static readonly action = "gcx:wf:arcgis::ConvertValueToArcGisFieldType"; static readonly suite = "gcx:wf:builtin"; execute(inputs: ConvertValueToArcGisFieldTypeInputs): ConvertValueToArcGisFieldTypeOutputs; }