import { Command } from 'commander'; import { BaseCommand } from './base'; /** * EditCommand opens an existing agent prompt file in a suitable editor. * Behaviour mirrors the environment detection / fallbacks used in NewCommand * but only for an existing file. We intentionally re-implement minimal * editor detection here instead of coupling to NewCommand internals. */ export declare class EditCommand extends BaseCommand { execute(agentName: string): Promise; private detectEnvironment; private openInEditor; private trySpawn; createCommand(): Command; } export default EditCommand; //# sourceMappingURL=editCommand.d.ts.map