import { Prompt, Variables } from '../../types/TemplateConfig'; import { Source } from '../../types/Options'; import VariablesStore from "../Compiler/Variables"; export declare type Options = { yes?: boolean; promptProcess?: Function; storePrompts?: boolean; cacheDir?: string; source?: Source; variables?: VariablesStore; context?: any; }; export default function prompt(prompts: Array, { yes, promptProcess, storePrompts, cacheDir, source, variables, context, }?: Options): Promise;