export declare const STEER_COMMAND_NAME = "/steer"; export declare const STEER_COMMAND_USAGE = "Usage: /steer "; export declare const STEER_COMMAND_ACTIVE_WORK_REQUIRED = "/steer needs an active workstream. Use it while Jensen is working, or after an assistant response to continue the current work. It does not create a new standalone task by itself."; export interface SteerCommandMessage { role: string; } export interface SteerCommandTarget { isStreaming: boolean; state: { messages: readonly SteerCommandMessage[]; }; steer(text: string): Promise; continueCurrentWork(): Promise; getSteeringMessages(): readonly string[]; } export declare function parseSteerCommand(text: string): string | undefined; export declare function runSteerCommand(target: SteerCommandTarget, message: string): Promise; //# sourceMappingURL=steer-command.d.ts.map