/** * TerminateCommand - Signals completion of agentic editing task * This is a no-op command used to signal that an agentic loop should terminate */ import type { EditorCommand } from '../CommandManager'; export declare class TerminateCommand implements EditorCommand { private message; private success; description: string; constructor(message: string, success?: boolean); execute(): void; undo(): void; redo(): void; getMessage(): string; isSuccess(): boolean; } //# sourceMappingURL=TerminateCommand.d.ts.map