import { Command } from '@oclif/core'; import { type Workflow } from '#api/generated/api.js'; interface WorkflowDisplay { name: string; description: string; inputs: string; outputs: string; scenarios: string; aliases: string; } export declare function parseWorkflowForDisplay(workflow: Workflow): WorkflowDisplay; export declare function formatWorkflowsAsList(workflows: Workflow[]): string; export default class WorkflowList extends Command { static description: string; static enableJsonFlag: boolean; static examples: string[]; static flags: { catalog: import("@oclif/core/interfaces").OptionFlag; format: import("@oclif/core/interfaces").OptionFlag; detailed: import("@oclif/core/interfaces").BooleanFlag; filter: import("@oclif/core/interfaces").OptionFlag; }; run(): Promise<{ workflows: unknown[]; }>; catch(error: Error): Promise; } export {};