import { z } from 'zod'; import { BaseCommand } from '../base-command'; declare const flagsSchema: z.ZodObject<{ active: z.ZodOptional; all: z.ZodOptional; id: z.ZodOptional; }, "strip", z.ZodTypeAny, { id?: string | undefined; active?: string | undefined; all?: boolean | undefined; }, { id?: string | undefined; active?: string | undefined; all?: boolean | undefined; }>; export declare class UpdateWorkflowCommand extends BaseCommand> { run(): Promise; catch(error: Error): Promise; } export {};