export interface ExternalEditorCommand { command: string; args: string[]; } /** Parse the small command-line form conventionally stored in VISUAL/EDITOR. */ export declare function parseExternalEditorCommand(value: string): ExternalEditorCommand | undefined; export declare function runExternalEditor(commandLine: string, filePath: string): Promise; //# sourceMappingURL=external-editor-command.d.ts.map