import type { IActivityHandler, EmptyOutputs } from "../../IActivityHandler"; /** Defines inputs for the Throw activity. */ export interface ThrowInputs { code?: string; message?: string; error?: Error; } export declare class Throw implements IActivityHandler { static readonly action = "gcx:wf:core::Throw"; static readonly suite = "gcx:wf:builtin"; execute(inputs: ThrowInputs): PromiseLike; }