import type { IActivityHandler } from "../../IActivityHandler"; /** Defines outputs for the Random activity. */ export interface RandomOutputs { /** @description The result of the operation. */ result: number; } export declare class Random implements IActivityHandler { static readonly action = "gcx:wf:math::Random"; static readonly suite = "gcx:wf:builtin"; execute(): RandomOutputs; }