import type { IActivityHandler, IActivityContext } from "../../IActivityHandler"; /** Defines inputs to the If activity. */ export interface IfInputs { condition: boolean; } /** Defines outputs to the If activity. */ export interface IfOutputs { /** @description Reflects the condition as given in the inputs. */ result: boolean; } export declare class If implements IActivityHandler { static readonly action = "gcx:wf:core::If"; static readonly suite = "gcx:wf:builtin"; execute(inputs: IfInputs, context: IActivityContext): IfOutputs; }