import { Command } from '@oclif/core'; import { type WorkflowRun } from '#services/workflow_runs.js'; export default class WorkflowRunsList extends Command { static description: string; static enableJsonFlag: boolean; static examples: string[]; static args: { workflowName: import("@oclif/core/interfaces").Arg>; }; static flags: { catalog: import("@oclif/core/interfaces").OptionFlag; limit: import("@oclif/core/interfaces").OptionFlag; format: import("@oclif/core/interfaces").OptionFlag; }; run(): Promise; catch(error: Error): Promise; }