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