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