export interface FocusOpts { org?: string; user?: string; clear?: boolean; } /** * `solosquad workflow focus ` — set the active workflow for a * user's Chief session. The next Chief turn will get a system-prompt hint * telling it which workflow context is current. The Chief can also override at * runtime by emitting [focus:] in its reply. */ export declare function workflowFocusCommand(workflowId: string | undefined, opts: FocusOpts): Promise;