import { SfCommand } from '@salesforce/sf-plugins-core'; import type { SprintRecord } from '../../../../types/index.js'; export type SprintVelocityResult = { sprints: SprintRecord[]; file: string; cwd: string; }; export default class WorkflowSprintVelocity extends SfCommand { static readonly summary: string; static readonly description: string; static readonly examples: string[]; static readonly flags: { limit: import("@oclif/core/interfaces").OptionFlag; }; run(): Promise; }