export interface ExternalEditorOptions { command: string; content: string; } export type ExternalEditorResult = { status: "complete"; content: string; } | { status: "failed"; }; export declare function editInExternalEditor(options: ExternalEditorOptions): Promise; //# sourceMappingURL=external-editor.d.ts.map