import { SfCommand } from '@salesforce/sf-plugins-core'; import type { SetupAgentsWorkflowPhasePlanResult } from '../../../types/index.js'; export default class WorkflowPhasePlan extends SfCommand { static readonly summary: string; static readonly description: string; static readonly examples: string[]; static readonly flags: { story: import("@oclif/core/interfaces").OptionFlag; 'skip-phase': import("@oclif/core/interfaces").OptionFlag; 'add-phase': import("@oclif/core/interfaces").OptionFlag; 'require-gate': import("@oclif/core/interfaces").OptionFlag; 'remove-gate': import("@oclif/core/interfaces").OptionFlag; save: import("@oclif/core/interfaces").BooleanFlag; }; run(): Promise; }