import type { IActivityHandler } from "../../IActivityHandler"; /** Defines inputs for the Min activity. */ export interface MinInputs { value1: number | number[]; value2: number | number[]; } /** Defines outputs for the Min activity. */ export interface MinOutputs { /** @description The smallest value from the inputs. */ result: number; } export declare class Min implements IActivityHandler { static readonly action = "gcx:wf:math::Min"; static readonly suite = "gcx:wf:builtin"; execute(inputs: MinInputs): MinOutputs; private addValuesToArray; }