import type { IActivityHandler } from "../../IActivityHandler"; /** Inputs for the DecodeUriComponent activity. */ export interface DecodeUriComponentInputs { value: string; } /** Outputs for the DecodeUriComponent activity. */ export interface DecodeUriComponentOutputs { /** @description The decoded value. */ result: string; } export declare class DecodeUriComponent implements IActivityHandler { static readonly action = "gcx:wf:core::DecodeUriComponent"; static readonly suite = "gcx:wf:builtin"; execute(inputs: DecodeUriComponentInputs): DecodeUriComponentOutputs; }