import * as readline from "node:readline"; /** * Helper function to safely run inquirer prompts in interactive mode * while preserving readline state and terminal settings. * * This prevents issues with arrow keys showing escape sequences (^[[A) * after inquirer prompts in interactive mode. */ export declare function runInquirerWithReadlineRestore(promptFn: () => Promise, interactiveReadline: readline.Interface | null): Promise;