import prompts from 'prompts'; /** * The `prompts` library doesn't always interpret CTRL+C and release the terminal back to the user * so we need handle this ourselves. This function is just a simple overload of the main `prompts` * import that we use. * * @see {@link https://github.com/terkelg/prompts/issues/252} */ export default function promptTerminal(question: prompts.PromptObject, options?: prompts.Options): Promise>;