/** `solosquad workflow list` — all workflows across orgs (or filter --org). */ export declare function workflowListCommand(opts: { org?: string; }): Promise; /** `solosquad workflow show ` — full details for one workflow. */ export declare function workflowShowCommand(workflowId: string, opts: { org?: string; events?: number; }): Promise; /** * v1.3.5 §3.9 B-D4 — `solosquad workflow new [--org]`: deterministic, * no-LLM scaffold of `/workflows//workflow.yaml`, matching the uniform * asset floor (skill/agent/workflow/goal/cron all expose `new`). Authoring the * real stages from intent is a conversational job (Chief / workflow-manager * skill) — this only writes a valid 1-stage skeleton you edit afterward. */ export declare function workflowNewCommand(id: string | undefined, opts?: { org?: string; }): Promise; export declare function workflowValidateCommand(filePath: string | undefined, opts: { all?: boolean; }): Promise;