import type { DisplayFormOutputs } from "./DisplayForm"; import type { IActivityHandler } from "../../IActivityHandler"; import type * as defs from "../../forms/FormDefinition"; export interface GetFormElementValueInputs { form: DisplayFormOutputs; /** The name of the form element. */ elementName?: string | defs.Element; } export interface GetFormElementValueOutputs { /** @description The value of the form element. */ value: any; } export declare class GetFormElementValue implements IActivityHandler { static readonly action = "gcx:wf:forms::GetFormElementValue"; static readonly suite = "gcx:wf:builtin"; execute(inputs: GetFormElementValueInputs): GetFormElementValueOutputs; }