import { QuestionCollection } from 'inquirer'; import { PinionContext, Callable } from '../core'; /** * Show prompts using Inquirer * * @param prompts The prompt questions to ask * @returns The generator context updated with the prompt results */ export declare const prompt: (prompts: Callable, C>) => (ctx: T) => Promise;