import type { IActivityHandler, EmptyInputs, IActivityContext } from "../../IActivityHandler"; export interface GetLogLevelOutputs { /** * @description The workflow log level. * The Log activity will only log messages whose level is greater than or equal to this workflow log level. * Log levels in decreasing rank are: "error", "warning", "log", "info", and "debug". */ level: "error" | "warning" | "log" | "info" | "debug"; } export declare class GetLogLevel implements IActivityHandler { static readonly action = "gcx:wf:core::GetLogLevel"; static readonly suite = "gcx:wf:builtin"; execute(_inputs: EmptyInputs, context: IActivityContext): GetLogLevelOutputs; }