import { SfCommand } from '@salesforce/sf-plugins-core'; import type { SprintRecord, VelocityLesson } from '../../../../types/index.js'; export type SprintCloseResult = { record: SprintRecord; lessons: VelocityLesson[]; file: string; cwd: string; }; export default class WorkflowSprintClose extends SfCommand { static readonly summary: string; static readonly description: string; static readonly examples: string[]; static readonly flags: { sprint: import("@oclif/core/interfaces").OptionFlag; 'committed-points': import("@oclif/core/interfaces").OptionFlag; }; run(): Promise; }