import type { IActivityHandler, EmptyOutputs, IActivityContext } from "../../IActivityHandler"; /** Inputs for the Log activity. */ export interface LogInputs { message: any; level?: "error" | "warning" | "log" | "info" | "debug"; } export declare class Log implements IActivityHandler { static readonly action = "gcx:wf:core::Log"; static readonly suite = "gcx:wf:builtin"; execute(inputs: LogInputs, context: IActivityContext): EmptyOutputs; protected _getConsole(): Pick; }