/** * Open a real file in VISUAL / EDITOR (or a sensible platform default), * block until the editor exits, then return the updated contents. * * This temporarily releases TTY raw mode so Ink can coexist with full-screen * terminal editors like vim / nano. */ export declare function openFileInEditor(filePath: string, initialContent: string): string;