import { SfCommand } from '@salesforce/sf-plugins-core'; import type { WorkflowPhase, WorkflowRunRecord } from '../../../types/index.js'; export type SetupAgentsWorkflowRollbackResult = { run: WorkflowRunRecord; targetPhase: WorkflowPhase; reason: string; file: string; cwd: string; }; export default class WorkflowRollback extends SfCommand { static readonly summary: string; static readonly description: string; static readonly examples: string[]; static readonly flags: { run: import("@oclif/core/interfaces").OptionFlag; phase: import("@oclif/core/interfaces").OptionFlag; reason: import("@oclif/core/interfaces").OptionFlag; 'target-dir': import("@oclif/core/interfaces").OptionFlag; }; run(): Promise; }