import type { IActivityHandler, EmptyOutputs } from "../../IActivityHandler"; /** * Inputs for the RunCommand activity. * @product This is intended for internal use only within VertiGIS Studio products. */ export interface RunCommandInputs { commandName: string; commandParameter?: any; } export declare class RunCommand implements IActivityHandler { static readonly action = "gcx:wf:app::RunCommand"; static readonly suite = "gcx:wf:builtin"; execute(inputs: RunCommandInputs): EmptyOutputs; }