import { SfCommand } from '@salesforce/sf-plugins-core'; import type { SprintRecord } from '../../../../types/index.js'; export type SprintStartResult = { record: SprintRecord; file: string; cwd: string; }; export default class WorkflowSprintStart extends SfCommand { static readonly summary: string; static readonly description: string; static readonly examples: string[]; static readonly flags: { sprint: import("@oclif/core/interfaces").OptionFlag; 'start-date': import("@oclif/core/interfaces").OptionFlag; 'end-date': import("@oclif/core/interfaces").OptionFlag; capacity: import("@oclif/core/interfaces").OptionFlag; }; run(): Promise; }